9680251382
These files are moved from the GIT repository. --HG-- extra : convert_revision : xtraeme%40gmail.com-20090818153742-98s9y92f5m19l3c2
17 lines
233 B
Makefile
17 lines
233 B
Makefile
include ../vars.mk
|
|
|
|
.PHONY: all
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
|
|
install:
|
|
if [ ! -d $(DESTDIR)$(SHAREDIR) ]; then \
|
|
install -d $(DESTDIR)$(SHAREDIR); \
|
|
fi
|
|
|
|
for f in *.sh; do \
|
|
install -m 755 $$f $(DESTDIR)$(SHAREDIR); \
|
|
done
|