diff -r e43dee5892f4 -r f82aa7afe872 Makefile --- a/Makefile Sun Apr 19 10:48:00 2015 +0200 +++ b/Makefile Tue Apr 21 09:47:52 2015 +0200 @@ -1,7 +1,7 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. # -# Copyright 2014 Mike Becker. All rights reserved. +# Copyright 2015 Mike Becker. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: @@ -37,12 +37,12 @@ $(MKDIR) build test: compile - ./build/$(BIN) $(ARGS) src/c2html.c -o build/code.html \ + ./build/$(BIN) $(ARGS) test/ctestfile.c -o build/ctest.html \ + -H test/header.html -F test/footer.html + ./build/$(BIN) $(ARGS) -j test/javatestfile.java -o build/javatest.html \ + -H test/header.html -F test/footer.html + ./build/$(BIN) $(ARGS) test/bigtestfile.c -o build/bigtest.html \ -H test/header.html -F test/footer.html -test-java: compile - ./build/$(BIN) $(ARGS) -j test/Game.java -o build/code.html \ - -H test/header.html -F test/footer.html - clean: $(RM) -f -R build