mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-23 02:53:55 +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
|