summaryrefslogtreecommitdiff
path: root/Build/source/libs/t1lib/Makefile.in
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-16 00:09:26 +0000
committerKarl Berry <karl@freefriends.org>2006-01-16 00:09:26 +0000
commit6c0eafbb1395d426a72a74538e0b2a95e8344ca6 (patch)
tree2a5f80b80fc76086a2602b812c2a182d00f961b7 /Build/source/libs/t1lib/Makefile.in
parent70f7efeb5c9965a63a4143ad1c1f473585dc364c (diff)
libs 1
git-svn-id: svn://tug.org/texlive/trunk@1483 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/t1lib/Makefile.in')
-rw-r--r--Build/source/libs/t1lib/Makefile.in27
1 files changed, 27 insertions, 0 deletions
diff --git a/Build/source/libs/t1lib/Makefile.in b/Build/source/libs/t1lib/Makefile.in
new file mode 100644
index 00000000000..c7539856acc
--- /dev/null
+++ b/Build/source/libs/t1lib/Makefile.in
@@ -0,0 +1,27 @@
+kpse_include ../../texk/make/common.mk
+kpse_include ../../texk/make/programs.mk
+kpse_include ../../texk/make/library.mk
+kpse_include ../../texk/make/paths.mk
+
+prog_cflags = @X_CFLAGS@ -DT1LIB_IDENT=\"@T1LIB_IDENTIFIER@\" -DGLOBAL_CONFIG_DIR=\"@T1LIB_DATA_DIR@\"
+
+OBJS = parseAFM.o t1aaset.o t1afmtool.o t1base.o t1delete.o t1enc.o \
+ t1env.o t1finfo.o t1load.o t1outline.o t1set.o t1subset.o t1trans.o
+
+libt1.a: $(OBJS)
+ rm -f $@
+ $(AR) $(ARFLAGS) $@ $(OBJS)
+ $(RANLIB) $@
+
+all: libt1.a
+uninstall:
+
+kpse_include ../../texk/make/clean.mk
+
+clean::
+ rm -f libt1.a
+
+distclean::
+ rm -f sysconf.h
+
+# DO NOT DELETE THIS LINE -- make depend depends on it.