summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-06 09:56:57 +0000
committerDana Jansens <danakj@orodu.net>2003-04-06 09:56:57 +0000
commit5d665673a29be21fe4ecad870d0a2d4f5c2f308d (patch)
tree0e06dc5e81708d0024a149d54a739977cfb68213 /Makefile.in
parentee2368044dd077207962f71194158265c74fe74e (diff)
fixes for build system. add themes to the install process. use the build/ dir for configures trash dump
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in34
1 files changed, 34 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
new file mode 100644
index 00000000..400c1c98
--- /dev/null
+++ b/Makefile.in
@@ -0,0 +1,34 @@
+include build/Makefile.incl
+
+targets = render kernel plugins engines themes data
+
+all: libtool
+ @for i in $(targets); do \
+ $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \
+ done
+
+uninstall:
+ @for i in $(targets); do \
+ $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \
+ done
+
+install: all
+ @for i in $(targets); do \
+ $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \
+ done
+
+clean:
+ @for i in $(targets); do \
+ $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \
+ done
+ $(RM) *\~
+
+distclean: clean
+ $(RM) configure Makefile.incl
+ $(RM) -r .deps/
+
+LIBTOOL_DEPS = @LIBTOOL_DEPS@
+libtool: $(LIBTOOL_DEPS)
+ $(SHELL) ./config.status --recheck
+
+.PHONY: all clean distclean install uninstall