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