diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2017-05-06 13:27:02 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2017-05-21 13:19:44 +0200 |
commit | 75ff8091aa7746f0ff235572ea098cb083d6500a (patch) | |
tree | 98c562df6dd194f2e582a74d0fc3a2cbef745154 /Makefile | |
download | ell-75ff8091aa7746f0ff235572ea098cb083d6500a.tar.gz ell-75ff8091aa7746f0ff235572ea098cb083d6500a.tar.xz ell-75ff8091aa7746f0ff235572ea098cb083d6500a.zip |
Initial commit
Nothing is working.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3810925 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +CFLAGS = -std=gnu99 -Wall +all: ell +ell: ell.c + $(CC) $(CFLAGS) $< -o $@ +clean: + rm ell +.PHONY: all clean |