|
Revision 1681, 311 bytes
(checked in by don, 10 years ago)
|
|
1) Replaced all Makefile* with GNUmakefile*.
2) Changed Makedepend system to make individual dependency files, which
should save time rebuilding dependencies by limiting the regeneration
of dependency file for only modified source files.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | TOPDIR = ../../.. |
|---|
| 2 | include $(TOPDIR)/Make/makedefs |
|---|
| 3 | |
|---|
| 4 | CXXFILES =\ |
|---|
| 5 | glm.cpp\ |
|---|
| 6 | ReaderWriterOBJ.cpp\ |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | INC += -I$(THISDIR) |
|---|
| 10 | |
|---|
| 11 | LIBS += $(OSG_LIBS) $(OTHER_LIBS) |
|---|
| 12 | |
|---|
| 13 | TARGET_BASENAME = obj |
|---|
| 14 | include $(TOPDIR)/Make/cygwin_plugin_def |
|---|
| 15 | PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT) |
|---|
| 16 | |
|---|
| 17 | include $(TOPDIR)/Make/makerules |
|---|