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
13 lines
229 B
Makefile
13 lines
229 B
Makefile
TOPDIR = ../../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
OrientationConverter.cpp\
|
|
osgconv.cpp\
|
|
|
|
LIBS += $(OSG_LIBS) $(GLUT_LIB) $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS)
|
|
|
|
EXEC = osgconv
|
|
|
|
include $(TOPDIR)/Make/makerules
|