]> Dogcows Code - chaz/openbox/blob - build/Makefile.plugins
shrimpx above miklos?
[chaz/openbox] / build / Makefile.plugins
1 include build/Makefile.incl
2
3 targets = resistance placement keyboard mouse
4
5 all clean distclean:
6 @for i in $(targets); do \
7 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.plugins.$$i $@; \
8 done
9
10 install:
11 @for i in $(targets); do \
12 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.plugins.$$i $@; \
13 done
14 $(LIBTOOL) --mode=finish $(DESTDIR)$(plugindir)
15
16 uninstall:
17 @for i in $(targets); do \
18 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.plugins.$$i $@; \
19 done
20 -rmdir $(DESTDIR)$(plugindir)
21
22 .PHONY: all clean distclean install uninstall
This page took 0.038609 seconds and 4 git commands to generate.