diff options
author | Oxore <oxore@protonmail.com> | 2017-05-25 18:41:18 +0700 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2017-05-25 18:41:18 +0700 |
commit | d66b6169cf254cd0d7c83354170824c39a663ad5 (patch) | |
tree | e7559a88fb35c15f0e83de78b41cd3a8bba4a93e /Makefile | |
parent | 5a8b79c468578cd5226d8a543324835ca6978103 (diff) |
Makefile added, README.md updated
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b274ebc --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +CC=gcc +FILES:=$(wildcard src/*.c) +FILES:=$(FILES:.c=.o) + +CFLAGS += -Wall +CFLAGS += -std=c99 +CFLAGS += -O3 +LIBS += -lcsfml-graphics +LIBS += -lcsfml-window +LIBS += -lcsfml-system + +all: tetris + +tetris: $(FILES) + $(CC) -o $@ $^ $(CFLAGS) $(LIBS) + +clean: + rm -f tetris $(FILES) |