mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 23:53:56 +00:00
9 lines
137 B
Makefile
9 lines
137 B
Makefile
GCC=g++
|
|
|
|
all: niftool
|
|
|
|
niftool: niftool.cpp ../nif_file.h
|
|
$(GCC) $< ../nif_file.cpp ../../tools/stringops.cpp -o $@
|
|
|
|
clean:
|
|
rm niftool
|