diff options
author | Ludovic Court`es | 2005-06-15 13:00:39 +0000 |
---|---|---|
committer | Ludovic Court`es | 2005-06-15 13:00:39 +0000 |
commit | fc42fe56a57eace2dbdb31574c2e161f0eacf839 (patch) | |
tree | 18111570156cb0e3df0d81c8d104517a2263fd2c /skribe/skr/Makefile | |
download | skribilo-fc42fe56a57eace2dbdb31574c2e161f0eacf839.tar.gz skribilo-fc42fe56a57eace2dbdb31574c2e161f0eacf839.tar.lz skribilo-fc42fe56a57eace2dbdb31574c2e161f0eacf839.zip |
Initial import of Skribe 1.2d.
Initial import of Skribe 1.2d.
git-archimport-id: lcourtes@laas.fr--2004-libre/skribilo--devel--1.2--base-0
Diffstat (limited to 'skribe/skr/Makefile')
-rw-r--r-- | skribe/skr/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/skribe/skr/Makefile b/skribe/skr/Makefile new file mode 100644 index 0000000..dcc3e77 --- /dev/null +++ b/skribe/skr/Makefile @@ -0,0 +1,43 @@ +#*=====================================================================*/ +#* serrano/prgm/project/skribe/skr/Makefile */ +#* ------------------------------------------------------------- */ +#* Author : Manuel Serrano */ +#* Creation : Sat Oct 25 08:21:20 2003 */ +#* Last change : Wed May 18 15:34:21 2005 (serrano) */ +#* Copyright : 2003-05 Manuel Serrano */ +#* ------------------------------------------------------------- */ +#* The Skribe SKR Makefile */ +#*=====================================================================*/ +include ../etc/Makefile.config +include ../etc/$(SYSTEM)/Makefile.skb + +#*---------------------------------------------------------------------*/ +#* POPULATION */ +#*---------------------------------------------------------------------*/ +POPULATION= acmproc.skr sigplan.skr jfp.skr \ + slide.skr web-book.skr web-article.skr \ + base.skr latex.skr scribe.skr xml.skr \ + html.skr html4.skr lncs.skr skribe.skr \ + letter.skr french.skr latex-simple.skr context.skr Makefile + +#*---------------------------------------------------------------------*/ +#* pop */ +#*---------------------------------------------------------------------*/ +.PHONY: pop + +pop: + @ echo $(POPULATION:%=skr/%) + +#*---------------------------------------------------------------------*/ +#* Install/Uinstall */ +#*---------------------------------------------------------------------*/ +.PHONY: install uninstall + +install: $(DESTDIR)$(INSTALL_SKRDIR) + cp *.skr $(DESTDIR)$(INSTALL_SKRDIR) && chmod $(BMASK) $(DESTDIR)$(INSTALL_SKRDIR)/* + +uninstall: + +$(DESTDIR)$(INSTALL_SKRDIR): + mkdir -p $(DESTDIR)$(INSTALL_SKRDIR) && chmod a+rx $(DESTDIR)$(INSTALL_SKRDIR) + |