You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
303 B
Makefile
13 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
|