Files
lcdproc/clients/Makefile
T
1999-12-09 23:15:14 +00:00

40 lines
876 B
Makefile

########################################################################
# You shouldn't need to touch anything below here.
########################################################################
include ../Makefile.config
DIRS = lcdproc
TARGETS = lcdproc/lcdproc
###################################################################
# Compilation...
#
all: $(TARGETS)
for i in $(DIRS); do \
(cd $$i; [ -f Makefile ] && $(MAKE) $@) \
done
##################################################################
# Installation
#
install: $(TARGETS)
@echo Installing LCD clients...
for i in $(DIRS); do \
(cd $$i; [ -f Makefile ] && $(MAKE) $@) \
done; true
##################################################################
# Other stuff...
#
clean:
for i in $(DIRS); do \
(cd $$i; [ -f Makefile ] && $(MAKE) $@) \
done; true
rm -f *.o *~ core
edit:
emacs . &