You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
218 B
Makefile
13 lines
218 B
Makefile
15 years ago
|
GCC=g++
|
||
|
|
||
|
all: strops_test slice_test
|
||
|
|
||
15 years ago
|
slice_test: slice_test.cpp ../slice_array.hpp
|
||
15 years ago
|
$(GCC) $< -o $@
|
||
|
|
||
15 years ago
|
strops_test: strops_test.cpp ../stringops.hpp ../stringops.cpp
|
||
15 years ago
|
$(GCC) $< -o $@ ../stringops.cpp
|
||
|
|
||
|
clean:
|
||
|
rm *_test
|