ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/libgender/Makefile
Revision: 1.13
Committed: Mon Oct 4 23:44:53 2004 UTC (21 years, 11 months ago) by root
Branch: MAIN
Changes since 1.12: +7 -49 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.8 CXX=g++ -O6
2 root 1.7 CC=g++ -O
3 root 1.9 CPPFLAGS=$(shell sdl-config --cflags) $(shell gts-config --cflags)
4     LDLIBS=$(shell sdl-config --libs) $(shell gts-config --libs) -lGL
5 root 1.1
6 root 1.4 all: test
7    
8 root 1.8 test: test.o entity.o oct.o view.o txtprt_import.o util.o
9 root 1.1
10 root 1.12 util.o: callback.h
11    
12 root 1.1 clean:
13 root 1.2 rm -f test *.o
14 root 1.1
15 root 1.10 depend:
16 root 1.13 makedepend -Y *.C >/dev/null 2>&1
17 root 1.10
18     # DO NOT DELETE
19    
20 root 1.13 entity.o: entity.h util.h callback.h oct.h view.h
21     oct.o: oct.h util.h callback.h view.h entity.h
22     test.o: entity.h util.h callback.h oct.h view.h txtprt_import.h
23     txtprt_import.o: txtprt_import.h entity.h util.h callback.h oct.h view.h
24     util.o: util.h callback.h
25     view.o: oct.h util.h callback.h view.h