[build] remove uneeded path_priority/Makefile
authorroot <root@potab.(none)>
Thu, 18 Aug 2005 18:40:33 +0000 (20:40 +0200)
committerroot <root@potab.(none)>
Thu, 18 Aug 2005 18:40:33 +0000 (20:40 +0200)
now that we find out what dirs to go compile into, no need for
intermediate Makefile

path_priority/Makefile [deleted file]

diff --git a/path_priority/Makefile b/path_priority/Makefile
deleted file mode 100644 (file)
index 9be508e..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-# Makefile
-#
-# Copyright (C) 2003 Christophe Varoqui, <christophe.varoqui@free.fr>
-#
-DEBUG = 0
-
-SUBDIRS        = $(shell find . -mindepth 1 -maxdepth 1 -type d|cut -c3-)
-
-all:
-       @for DIR in $(SUBDIRS); do \
-               $(MAKE) -C $$DIR BUILD=$(BUILD) VERSION=$(VERSION); \
-       done
-
-install:
-       @for DIR in $(SUBDIRS); do \
-               $(MAKE) -C $$DIR install; \
-       done
-
-uninstall:
-       @for DIR in $(SUBDIRS); do \
-               $(MAKE) -C $$DIR uninstall; \
-       done
-
-clean:
-       @for DIR in $(SUBDIRS); do \
-               $(MAKE) -C $$DIR clean; \
-       done