library and plugin files that looked like system library and system files which would have deleted original files on a 'make install'. Cygwin is not tested yet, but this needed to get fixed before a cygwin user wiped out his system library files.
38 lines
780 B
Makefile
38 lines
780 B
Makefile
TOPDIR = ../../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
ReaderWriterTXP.cpp\
|
|
TrPageArchive.cpp\
|
|
TrPageParser.cpp\
|
|
trpage_basic.cpp\
|
|
trpage_geom.cpp\
|
|
trpage_header.cpp\
|
|
trpage_tile.cpp\
|
|
trpage_readbuf.cpp\
|
|
trpage_rarchive.cpp\
|
|
trpage_writebuf.cpp\
|
|
trpage_warchive.cpp\
|
|
trpage_parse.cpp\
|
|
trpage_nodes.cpp\
|
|
trpage_model.cpp\
|
|
trpage_material.cpp\
|
|
trpage_swap.cpp\
|
|
trpage_range.cpp\
|
|
trpage_scene.cpp\
|
|
trpage_compat.cpp\
|
|
trpage_light.cpp\
|
|
trpage_pparse.cpp\
|
|
trpage_print.cpp
|
|
|
|
|
|
INC += -I$(THISDIR)
|
|
|
|
LIBS += $(OSG_LIBS) $(OTHER_LIBS)
|
|
|
|
TARGET_BASENAME = txp
|
|
include $(TOPDIR)/Make/cygwin_plugin_def
|
|
PLUGIN = $(PLUGIN_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT)
|
|
|
|
include $(TOPDIR)/Make/makerules
|