comparison: Makefile
Makefile
- changeset 12
- 7ce5c4b51959
- parent 3
- b7a6d546bd1d
- child 17
- 7ea86024aef0
equal
deleted
inserted
replaced
| 35 |
35 |
| 36 build: |
36 build: |
| 37 $(MKDIR) build |
37 $(MKDIR) build |
| 38 |
38 |
| 39 test: compile |
39 test: compile |
| 40 ./build/$(BIN) src/c2html.c > build/body.html |
40 ./build/$(BIN) $(ARGS) src/c2html.c > build/body.html |
| 41 cat test/header.html build/body.html test/footer.html > build/code.html |
41 cat test/header.html build/body.html test/footer.html > build/code.html |
| 42 |
42 |
| 43 clean: |
43 clean: |
| 44 $(RM) -f -R build |
44 $(RM) -f -R build |