aboutsummaryrefslogtreecommitdiff
path: root/examples/Makefile
diff options
context:
space:
mode:
authorLudovic Courtes2006-01-15 10:12:33 +0000
committerLudovic Courtes2006-01-15 10:12:33 +0000
commit2fa5d0c750d71bbdf5b2c20db01f274ab5da0cc9 (patch)
tree2827aef0d0b32a0e87c178edf42ba667fe52c258 /examples/Makefile
parenta1b1ba4d3edd2a5326dfb82527c4bdcdef29284a (diff)
downloadskribilo-2fa5d0c750d71bbdf5b2c20db01f274ab5da0cc9.tar.gz
skribilo-2fa5d0c750d71bbdf5b2c20db01f274ab5da0cc9.tar.lz
skribilo-2fa5d0c750d71bbdf5b2c20db01f274ab5da0cc9.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--2005-mobile/skribilo--devel--1.2--patch-23
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
-