X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fcom%2Fdogcows%2Fresources%2FC%2B%2BMakefile;h=5b58356abb781a4cf2ec96723cc5a1c309ad9376;hb=4afcc19722d6dde23c36f9491ebab9f7b6e38e8b;hp=3406fb0cef4a2f1ae9a6b377e416bee397c427ad;hpb=a591f0fce8ebccd87f2e199479a0f91ad182f003;p=chaz%2Fvimcoder diff --git a/src/com/dogcows/resources/C++Makefile b/src/com/dogcows/resources/C++Makefile index 3406fb0..5b58356 100644 --- a/src/com/dogcows/resources/C++Makefile +++ b/src/com/dogcows/resources/C++Makefile @@ -1,14 +1,14 @@ -# Set the command for your C++ compiler, and specify any compiler flags you -# want to use (e.g. -g -Werror). -CXX = g++ -CXXFLAGS = -ggdb -Wall +# Set the command for your C++ compiler, and specify any compiler flags you want to use (e.g. -g +# -Werror). +CXX = g++ +CXXFLAGS = -ggdb -Wall -# The driver outputs TAP (Test Anything Protocol), so it can also be used with -# any TAP test harness (e.g. prove). Set the path to your test harness here, -# then use the `prove' target to run the tests with that harness. -PROVE = prove -PROVEFLAGS = -e "" +# The driver outputs TAP (Test Anything Protocol), so it can also be used with any TAP test harness +# (e.g. prove). Set the path to your test harness here, then use the `prove' target to run the +# tests with that harness. +PROVE = prove +PROVEFLAGS = -e "" ifeq ($(OS),Windows_NT) @@ -35,7 +35,9 @@ prove: all %$(EXEEXT): %.cc - $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ + $(LINK.cc) $< $(LOADLIBES) $(LDLIBS) -o $@ + +driver$(EXEEXT): $CLASSNAME$.cc .PHONY: all clean distclean run test prove