source: trunk/src/testing/app/gl/Makefile.amd64 @ 4

Revision 4, 290 bytes checked in by ajaworski, 13 years ago (diff)

Added modified SAGE sources

Line 
1PROGRAM = libmyGL.so
2
3CXX=g++ -Wno-deprecated
4CXXFLAGS= -I../../include -fPIC
5
6FILES = gl.o
7
8$(PROGRAM): $(FILES)
9        $(CXX) -shared -o $(PROGRAM) $(FILES) -ldl -lc -L../../lib -lsail
10
11install: $(PROGRAM)
12        cp $(PROGRAM) ../../bin
13        cp $(PROGRAM) ../../lib
14
15clean:
16        /bin/rm -f *~ *.o $(PROGRAM)
Note: See TracBrowser for help on using the repository browser.