diff options
author | Kevin Chabowski <kevin@kch42.de> | 2013-07-15 16:37:00 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2013-07-15 16:37:00 +0200 |
commit | 88550c5c3970d220a232f3e9f2aa8c95561997ec (patch) | |
tree | 6b23488c7a71fc5b8028378da3bdd84c142b019a /Makefile | |
download | nebula2-88550c5c3970d220a232f3e9f2aa8c95561997ec.tar.gz nebula2-88550c5c3970d220a232f3e9f2aa8c95561997ec.tar.bz2 nebula2-88550c5c3970d220a232f3e9f2aa8c95561997ec.zip |
Initial commit
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..f4e475c --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +CC=gcc -Wall -Werror -pedantic -std=c99 + +all: + + + +%.o:%.c + $(CC) -c -o $@ $< + +clean: + rm -f *.o
\ No newline at end of file |