snippets: Introduce hello dir
[lcapit-junk-code.git] / dromfs / Makefile
blob628f017fd2949324f2364593bdcafdccc39e52b9
1 CFLAGS = -Wall -W -Wmissing-declarations -Wmissing-prototypes \
2 -Wredundant-decls -Wshadow -Wbad-function-cast -Wcast-qual \
3 -Wconversion
5 all: dromfs
7 dromfs: dromfs.c
8 cc -o dromfs dromfs.c $(CFLAGS)
10 clean:
11 rm -f dromfs *~