summaryrefslogtreecommitdiff
path: root/Master/tlpkg/lib
diff options
context:
space:
mode:
authorJjgod Jiang <gzjjgod@gmail.com>2007-11-20 08:52:39 +0000
committerJjgod Jiang <gzjjgod@gmail.com>2007-11-20 08:52:39 +0000
commit7c677a6d7b0276d66dac09dbd58481633a95b1ce (patch)
treea30285d052ea56164d74dacf953fd34dc6c1cea6 /Master/tlpkg/lib
parent5e225d257c6d1f38a26a84ef299666eeaa676a9b (diff)
Add a Makefile (only for Mac OS X right now, we need more a serious
one, maybe written with autotools). git-svn-id: svn://tug.org/texlive/trunk@5529 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/lib')
-rw-r--r--Master/tlpkg/lib/C/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Master/tlpkg/lib/C/Makefile b/Master/tlpkg/lib/C/Makefile
new file mode 100644
index 00000000000..39b165212fe
--- /dev/null
+++ b/Master/tlpkg/lib/C/Makefile
@@ -0,0 +1,7 @@
+CFLAGS = -Wall -I.
+SO = dylib
+
+all: libtlp.$(SO)
+
+libtlp.$(SO): tlp-src.o tlp-utils.o
+ $(CC) $^ -dynamiclib -o $@