From bd6f08fd7cb117f1890d8f202960e2d87cf6ad48 Mon Sep 17 00:00:00 2001 From: Didier Verna Date: Fri, 2 Feb 2001 14:05:36 +0000 Subject: makefile for tex dir --- tex/.cvsignore | 1 + tex/Makefile.in | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 tex/.cvsignore create mode 100644 tex/Makefile.in (limited to 'tex') diff --git a/tex/.cvsignore b/tex/.cvsignore new file mode 100644 index 0000000..f3c7a7c --- /dev/null +++ b/tex/.cvsignore @@ -0,0 +1 @@ +Makefile diff --git a/tex/Makefile.in b/tex/Makefile.in new file mode 100644 index 0000000..6fb23af --- /dev/null +++ b/tex/Makefile.in @@ -0,0 +1,39 @@ +@SET_MAKE@ + +INSTALL = @INSTALL@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_DATA = @INSTALL_DATA@ + +LN_S = @LN_S@ + +PACKAGEDIR = @PACKAGEDIR@ +SYMLINKS = @SYMLINKS@ +LINKPATH = @LINKPATH@ + +install-pkg: uninstall-pkg + @if test "x$(SYMLINKS)" = "xno" ; then \ + mkdir -p -m 0755 $(PACKAGEDIR)/etc/bbdb/tex ; \ + for i in `ls *.tex` ; do \ + $(INSTALL_DATA) $$i $(PACKAGEDIR)/etc/bbdb/tex/ ; \ + done ; \ + else \ + if test "x$(LINKPATH)" = "x" ; then \ + $(LN_S) `pwd` $(PACKAGEDIR)/etc/bbdb/tex ; \ + else \ + $(LN_S) $(LINKPATH)/tex $(PACKAGEDIR)/etc/bbdb/tex ; \ + fi ; \ + fi + +uninstall-pkg: + -$(RM) -r $(PACKAGEDIR)/etc/bbdb/tex + +clean: + +distclean: clean + +# Backward compatibility: +reallyclean: distclean + +cvsclean: distclean + -$(RM) Makefile -- cgit v1.2.3