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