Initial revision

This commit is contained in:
William Ferrell
1999-12-09 23:15:14 +00:00
commit 2635c3085d
139 changed files with 24298 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
########################################################################
# 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 . &