aboutsummaryrefslogtreecommitdiff
path: root/smelt/sdl/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'smelt/sdl/makefile')
-rw-r--r--smelt/sdl/makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/smelt/sdl/makefile b/smelt/sdl/makefile
new file mode 100644
index 0000000..aa9acb8
--- /dev/null
+++ b/smelt/sdl/makefile
@@ -0,0 +1,13 @@
+CC= g++
+CXXFLAGS= -c -std=c++11 -Wall -I/usr/include/SDL/ -I../include -D_LINUX
+
+all: objects archive clean
+
+objects:
+ $(CC) *.cpp $(CXXFLAGS)
+archive:
+ $(AR) rcs libsmelt.a *.o
+clean:
+ if ( test gfx_sdl.o ); then rm *.o; fi
+clean-all: clean
+ rm *.a \ No newline at end of file