mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-02 16:45:37 +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
|