Makefile

changeset 25
f82aa7afe872
parent 23
f44a185b678b
child 30
0bfd4d6f086a
     1.1 --- a/Makefile	Sun Apr 19 10:48:00 2015 +0200
     1.2 +++ b/Makefile	Tue Apr 21 09:47:52 2015 +0200
     1.3 @@ -1,7 +1,7 @@
     1.4  #
     1.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     1.6  #
     1.7 -# Copyright 2014 Mike Becker. All rights reserved.
     1.8 +# Copyright 2015 Mike Becker. All rights reserved.
     1.9  #
    1.10  # Redistribution and use in source and binary forms, with or without
    1.11  # modification, are permitted provided that the following conditions are met:
    1.12 @@ -37,12 +37,12 @@
    1.13  	$(MKDIR) build
    1.14  	
    1.15  test: compile
    1.16 -	./build/$(BIN) $(ARGS) src/c2html.c -o build/code.html \
    1.17 +	./build/$(BIN) $(ARGS) test/ctestfile.c -o build/ctest.html \
    1.18 +	-H test/header.html -F test/footer.html
    1.19 +	./build/$(BIN) $(ARGS) -j test/javatestfile.java -o build/javatest.html \
    1.20 +	-H test/header.html -F test/footer.html
    1.21 +	./build/$(BIN) $(ARGS) test/bigtestfile.c -o build/bigtest.html \
    1.22  	-H test/header.html -F test/footer.html
    1.23  
    1.24 -test-java: compile
    1.25 -	./build/$(BIN) $(ARGS) -j test/Game.java -o build/code.html \
    1.26 -	-H test/header.html -F test/footer.html
    1.27 -	
    1.28  clean:
    1.29  	$(RM) -f -R build

mercurial