now that we find out what dirs to go compile into, no need for
intermediate Makefile
+++ /dev/null
-# 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