Subversion Repositories PlanixRsrch.SVN

Rev

Rev 449 | Rev 451 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 449 Rev 450
Line 38... Line 38...
38
example1: $(LIBNAME) example1.o
38
example1: $(LIBNAME) example1.o
39
	$(CC) $(LDFLAGS) -o example1 example1.o $(LIBNAME)
39
	$(CC) $(LDFLAGS) -o example1 example1.o $(LIBNAME)
40
 
40
 
41
example2: $(LIBNAME) example2.o
41
example2: $(LIBNAME) example2.o
42
	$(CC) $(LDFLAGS) -o example2 example2.o $(LIBNAME)
42
	$(CC) $(LDFLAGS) -o example2 example2.o $(LIBNAME)
-
 
43
 
-
 
44
example3: $(LIBNAME) example3.o
-
 
45
	$(CC) $(LDFLAGS) -o example3 example3.o $(LIBNAME)
43
 
46
 
44
mavtest: $(LIBNAME) mavtest.o
47
mavtest: $(LIBNAME) mavtest.o
45
	$(CC) $(LDFLAGS) -o mavtest mavtest.o $(LIBNAME)
48
	$(CC) $(LDFLAGS) -o mavtest mavtest.o $(LIBNAME)
46
 
49
 
47
 
50
 
Line 49... Line 52...
49
	rm -f $(OBJS)
52
	rm -f $(OBJS)
50
	rm -f $(LIBNAME)
53
	rm -f $(LIBNAME)
51
	rm -f $(DLIBNAME)
54
	rm -f $(DLIBNAME)
52
	rm -f example1.o example1 
55
	rm -f example1.o example1 
53
	rm -f example2.o example2
56
	rm -f example2.o example2
-
 
57
	rm -f example3.o example3
54
	rm -f mavtest mavtest.o
58
	rm -f mavtest mavtest.o
55
	rm -f *.core
59
	rm -f *.core
56
	rm -f test.o test
60
	rm -f test.o test
57
 
61
 
58
install: $(LIBNAME)
62
install: $(LIBNAME)