perl-5.22
|
Last change
on this file since b4abfab was
c5c522c,
checked in by Edwin Eefting <edwin@datux.nl>, 9 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 | ######################################################################## |
|---|
| 4 | include ../Makefile.config |
|---|
| 5 | |
|---|
| 6 | DIRS = lcdproc |
|---|
| 7 | TARGETS = lcdproc/lcdproc |
|---|
| 8 | |
|---|
| 9 | ################################################################### |
|---|
| 10 | # Compilation... |
|---|
| 11 | # |
|---|
| 12 | all: $(TARGETS) |
|---|
| 13 | for i in $(DIRS); do \ |
|---|
| 14 | (cd $$i; [ -f Makefile ] && $(MAKE) $@) \ |
|---|
| 15 | done |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | ################################################################## |
|---|
| 19 | # Installation |
|---|
| 20 | # |
|---|
| 21 | install: $(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 | # |
|---|
| 31 | clean: |
|---|
| 32 | for i in $(DIRS); do \ |
|---|
| 33 | (cd $$i; [ -f Makefile ] && $(MAKE) $@) \ |
|---|
| 34 | done; true |
|---|
| 35 | rm -f *.o *~ core |
|---|
| 36 | |
|---|
| 37 | edit: |
|---|
| 38 | emacs . & |
|---|
| 39 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.