mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 04:19:55 +00:00
12 lines
303 B
Makefile
12 lines
303 B
Makefile
GCC=g++
|
|
|
|
all: niftool nif_bsa_test
|
|
|
|
niftool: niftool.cpp ../nif_file.hpp ../nif_file.cpp ../record.hpp
|
|
$(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
|