source: npl/mediabox/lcdproc_edwin/src/clients/Makefile

Last change on this file was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 876 bytes
Line 
1########################################################################
2# You shouldn't need to touch anything below here.
3########################################################################
4include ../Makefile.config
5
6DIRS = lcdproc
7TARGETS = lcdproc/lcdproc
8
9###################################################################
10# Compilation...
11#
12all: $(TARGETS)
13        for i in $(DIRS); do \
14                (cd $$i; [ -f Makefile ] && $(MAKE) $@) \
15        done
16
17
18##################################################################
19# Installation
20#
21install: $(TARGETS)
22        @echo Installing LCD clients...
23        for i in $(DIRS); do \
24                (cd $$i; [ -f Makefile ] && $(MAKE) $@) \
25        done; true
26
27
28##################################################################
29# Other stuff...
30#
31clean:
32        for i in $(DIRS); do \
33                (cd $$i; [ -f Makefile ] && $(MAKE) $@) \
34        done; true
35        rm -f *.o *~ core
36
37edit:
38        emacs . &
39
Note: See TracBrowser for help on using the repository browser.