about summary refs log tree commit diff
path: root/examples/Makefile
diff options
context:
space:
mode:
authorLudovic Courtes2006-01-15 22:08:44 +0000
committerLudovic Courtes2006-01-15 22:08:44 +0000
commit1a1f3bebff6dee978d90c823aba2995922ad2af8 (patch)
tree2827aef0d0b32a0e87c178edf42ba667fe52c258 /examples/Makefile
parenta427c398fad59341c99a124a6fbd6e0c619ecdb1 (diff)
parent2fa5d0c750d71bbdf5b2c20db01f274ab5da0cc9 (diff)
downloadskribilo-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/Makefile48
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
-