init c-tsttree
authorNiki Roo <niki@nikiroo.be>
Tue, 2 Jul 2024 13:50:54 +0000 (15:50 +0200)
committerNiki Roo <niki@nikiroo.be>
Tue, 2 Jul 2024 13:50:54 +0000 (15:50 +0200)
makefile.d [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 9ac945b..4f60199
@@ -1,5 +1,5 @@
 #
-# Makefile for C projets
+# Makefile for C test projets
 # > NAME   : the name of the main program (if programs, make a single .d file 
 #            per program, link them up in Makfile and use a $ssrcdir)
 # > srcdir : the source directory
@@ -72,12 +72,15 @@ rebuild: clean build
 
 $(NAME): deps $(dstdir)/$(NAME)
 
-# Program, so no test
-run:
+# Test program, so running = running tests
+run: run-test
+test: build
+run-test: test
        @echo
-       $(dstdir)/$(NAME) --help
-test run-test run-test-more:
-       @echo you are in the sources of the program, look at the tests instead
+       $(dstdir)/$(NAME)
+run-test-more: test
+       @echo
+       $(dstdir)/$(NAME) --more
 
 $(dstdir)/$(NAME): $(OBJECTS)
        mkdir -p $(dstdir)