mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
10 lines
137 B
Makefile
10 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
|