aboutsummaryrefslogtreecommitdiffstats
path: root/muparser/makefile
diff options
context:
space:
mode:
authorastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2008-12-15 07:26:12 +0000
committerastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2008-12-15 07:26:12 +0000
commit1f4a944064bc42284c33e6b755353d191cf288e8 (patch)
treec8cb2253dea5f395e0f867aa6976433bd3eb00de /muparser/makefile
downloadopt-utilities-1f4a944064bc42284c33e6b755353d191cf288e8.tar.bz2
git-svn-id: file:///home/svn/opt_utilities@1 ed2142bd-67ad-457f-ba7c-d818d4011675
Diffstat (limited to 'muparser/makefile')
-rw-r--r--muparser/makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/muparser/makefile b/muparser/makefile
new file mode 100644
index 0000000..83d2cd5
--- /dev/null
+++ b/muparser/makefile
@@ -0,0 +1,16 @@
+MUP_OBJ=muParserBase.o muParser.o muParserInt.o\
+ muParserBytecode.o muParserDLL.o\
+ muParserTest.o\
+ muParserCallback.o muParserError.o\
+ muParserTokenReader.o
+
+libmuparser.a:$(MUP_OBJ)
+ $(AR) $@ *.o
+
+.cpp.o:
+ $(CPP) $< $(CPPFLAGS)
+
+clean:
+ $(RM) *.o
+
+