diff options
author | Ludovic Courtes | 2006-01-15 22:08:44 +0000 |
---|---|---|
committer | Ludovic Courtes | 2006-01-15 22:08:44 +0000 |
commit | 1a1f3bebff6dee978d90c823aba2995922ad2af8 (patch) | |
tree | 2827aef0d0b32a0e87c178edf42ba667fe52c258 /examples/Makefile | |
parent | a427c398fad59341c99a124a6fbd6e0c619ecdb1 (diff) | |
parent | 2fa5d0c750d71bbdf5b2c20db01f274ab5da0cc9 (diff) | |
download | skribilo-1a1f3bebff6dee978d90c823aba2995922ad2af8.tar.gz skribilo-1a1f3bebff6dee978d90c823aba2995922ad2af8.tar.lz skribilo-1a1f3bebff6dee978d90c823aba2995922ad2af8.zip |
Cleaned up the Arch inventory and removed old useless makefiles.
Cleaned up the Arch inventory and removed old useless makefiles.
git-archimport-id: lcourtes@laas.fr--2004-libre/skribilo--devel--1.2--patch-26
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/examples/Makefile b/examples/Makefile deleted file mode 100644 index 7f47f6e..0000000 --- a/examples/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -#*=====================================================================*/ -#* serrano/prgm/project/skribe/examples/Makefile */ -#* ------------------------------------------------------------- */ -#* Author : Manuel Serrano */ -#* Creation : Fri Oct 24 13:25:43 2003 */ -#* Last change : Wed Feb 18 11:25:20 2004 (serrano) */ -#* Copyright : 2003-04 Manuel Serrano */ -#* ------------------------------------------------------------- */ -#* The meta Makefile for the examples */ -#*=====================================================================*/ - -#*---------------------------------------------------------------------*/ -#* All the examples */ -#*---------------------------------------------------------------------*/ -EXAMPLES=slide - -#*---------------------------------------------------------------------*/ -#* pop */ -#*---------------------------------------------------------------------*/ -.PHONY: pop - -pop: - @ for p in $(EXAMPLES); do \ - (cd $$p && $(MAKE) pop); \ - done - @ echo examples/Makefile - -#*---------------------------------------------------------------------*/ -#* Install/Uinstall */ -#*---------------------------------------------------------------------*/ -.PHONY: install uninstall - -install: - -uninstall: - -#*---------------------------------------------------------------------*/ -#* cleaning */ -#*---------------------------------------------------------------------*/ -.PHONY: clean distclean - -clean: - for p in $(EXAMPLES); do \ - (cd $$p && $(MAKE) clean); \ - done - -distclean: clean - |