forked from mirror/openmw-tes3mp
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
|