1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-18 13:12:50 +00:00
OpenMW/tools/tests/Makefile

13 lines
218 B
Makefile
Raw Normal View History

2010-01-04 19:16:40 +01:00
GCC=g++
all: strops_test slice_test
slice_test: slice_test.cpp ../slice_array.hpp
2010-01-04 19:16:40 +01:00
$(GCC) $< -o $@
strops_test: strops_test.cpp ../stringops.hpp ../stringops.cpp
2010-01-04 19:16:40 +01:00
$(GCC) $< -o $@ ../stringops.cpp
clean:
rm *_test