diff options
| author | erdgeist <> | 2013-03-01 23:00:32 +0000 | 
|---|---|---|
| committer | erdgeist <> | 2013-03-01 23:00:32 +0000 | 
| commit | 1581102195ece168cc6b3c862ec3cc19fbb8f906 (patch) | |
| tree | c2e3dba05e5ca8e8431bb5f550ac0d4917fc99ae /Makefile | |
Kickoff
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 | 
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4db0245 --- /dev/null +++ b/Makefile  | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | CFLAGS+=-Wall -Wextra -pedantic -Os | ||
| 2 | |||
| 3 | jaildaemon: jaildaemon.c | ||
| 4 | $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS) | ||
| 5 | |||
| 6 | .PHONY: clean test | ||
| 7 | clean: | ||
| 8 | rm -f jaildaemon | ||
| 9 | |||
| 10 | test: jaildaemon | ||
| 11 | sudo sh ./jaildaemon.sh | ||
