Parent Directory
|
Revision Log
feat(freehttpd): better error handling
1 | HTML_FILES = $(wildcard *.html) |
2 | HEADERS = $(HTML_FILES:.html=.h) |
3 | |
4 | all: $(HEADERS) |
5 | |
6 | $(HEADERS): $(HTML_FILES) |
7 | xxd -i $< > $@ |
8 | sed -i 's/^unsigned/static unsigned/' $@ |
9 | |
10 | clean: |
11 | rm -f *.h |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |