1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 21:42:13 +00:00
OpenMW/nif/tests/Makefile
2010-01-07 20:33:29 +01:00

13 lines
299 B
Makefile

GCC=g++
all: niftool nif_bsa_test
niftool: niftool.cpp ../nif_file.h ../nif_file.cpp ../record.h
$(GCC) $< ../nif_file.cpp ../../tools/stringops.cpp -o $@
nif_bsa_test: nif_bsa_test.cpp ../nif_file.cpp ../../bsa/bsa_file.cpp ../../tools/stringops.cpp
$(GCC) $^ -o $@
clean:
rm niftool *_test