diff options
author | tom <tom@ground-control> | 2015-04-30 22:20:53 -0500 |
---|---|---|
committer | tom <tom@ground-control> | 2015-04-30 22:20:53 -0500 |
commit | e1d75dfdf0727776adf0b3d44995ccf0e03487b3 (patch) | |
tree | f26074b8e9c598df33c66b1c57aad1e4dcd51f03 /Makefile |
first commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9f346de --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +OBJS = src/main.cpp src/window.cpp src/entity.cpp src/event.cpp + +CC = g++ + +COMPILER_FLAGS = -w + +LINKER_FLAGS = -lSDL2 -lSDL2_image + +all : $(OBJS) + $(CC) $(OBJS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o nature |