1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 06:39:49 +00:00
OpenMW/tools/tests/Makefile

13 lines
214 B
Makefile
Raw Normal View History

2010-01-04 18:16:40 +00:00
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