summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-13 21:17:02 +0000
committerDana Jansens <danakj@orodu.net>2003-04-13 21:17:02 +0000
commitdfc9680e333c3a10fedea103136b03c1ebc1ab2b (patch)
treef1db27e2907f46e67270fd1041a4ac0cbcbfde8e /Makefile.in
parent1e1ee706501584dab74dde04333c712ccd0d7c91 (diff)
back to automake
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in34
1 files changed, 0 insertions, 34 deletions
diff --git a/Makefile.in b/Makefile.in
deleted file mode 100644
index 75ebca4b..00000000
--- a/Makefile.in
+++ /dev/null
@@ -1,34 +0,0 @@
-include build/Makefile.incl
-
-targets = render cwmcc obcl kernel plugins themes data
-
-all: libtool
- @for i in $(targets); do \
- $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
- done
-
-uninstall:
- @for i in $(targets); do \
- $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
- done
-
-install: all
- @for i in $(targets); do \
- $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
- done
-
-clean:
- @for i in $(targets); do \
- $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
- done
- $(RM) *\~
-
-distclean: clean
- $(RM) configure Makefile.incl Makefile
- $(RM) -r .deps/
-
-LIBTOOL_DEPS = @LIBTOOL_DEPS@
-libtool: $(LIBTOOL_DEPS)
- $(SHELL) ./config.status --recheck
-
-.PHONY: all clean distclean install uninstall