summaryrefslogtreecommitdiff
path: root/Makefile.in
blob: 75ebca4bd78b206742b2ad64d44245187c925c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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