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.
|
GCC=g++
|
|
|
|
all: strops_test slice_test
|
|
|
|
slice_test: slice_test.cpp ../slice_array.hpp
|
|
$(GCC) $< -o $@
|
|
|
|
strops_test: strops_test.cpp ../stringops.hpp ../stringops.cpp
|
|
$(GCC) $< -o $@ ../stringops.cpp
|
|
|
|
clean:
|
|
rm *_test
|