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