the Make directory is left with four files only :
makedefs
makerules
makedirrules
instrules
These work for all platforms supported so far, which include :
Linux
Irix
Solaris
MacOSX
Cygwin
FreeBSD
15 lines
292 B
Makefile
15 lines
292 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
GLUTEventAdapter.cpp\
|
|
Version.cpp\
|
|
Window.cpp\
|
|
Viewer.cpp\
|
|
|
|
LIBS += $(GLUT_LIB) -losgUtil -losgDB -losg $(OTHER_LIBS)
|
|
DEF += -DOSGGLUT_LIBRARY
|
|
LIB = libosgGLUT.$(SO_EXT)
|
|
|
|
include $(TOPDIR)/Make/makerules
|