added test target to clean, build, and run tester tool

This commit is contained in:
Bob Polis 2020-04-29 17:00:03 +02:00
parent 874006a2a5
commit d64dd9790b

View File

@ -64,7 +64,11 @@ $(LIBNAME).hpp: $(HDRS)
cat $$h >> $(LIBNAME).hpp; \ cat $$h >> $(LIBNAME).hpp; \
done done
.PHONY: clean install .PHONY: test clean install
test:
make -C tester clean
make -C tester && tester/tester
clean: clean:
$(RM) $(OBJS) $(DEPS) $(REALNAME) $(LIBNAME).hpp $(RM) $(OBJS) $(DEPS) $(REALNAME) $(LIBNAME).hpp