1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-20 12:53:52 +00:00
openmw/tools/tests/Makefile
2010-01-04 19:16:40 +01:00

12 lines
214 B
Makefile

GCC=g++
all: strops_test slice_test
slice_test: slice_test.cpp ../slice_array.h
$(GCC) $< -o $@
strops_test: strops_test.cpp ../stringops.h ../stringops.cpp
$(GCC) $< -o $@ ../stringops.cpp
clean:
rm *_test