876529370d
--HG-- extra : convert_revision : xtraeme%40gmail.com-20090818140434-3wttn8uvc7on7mry
19 lines
292 B
Makefile
19 lines
292 B
Makefile
include ../vars.mk
|
|
|
|
CONF_FILE = xbps-src.conf
|
|
|
|
.PHONY: all
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
|
|
install:
|
|
if [ ! -d $(DESTDIR)$(ETCDIR) ]; then \
|
|
install -d $(DESTDIR)$(ETCDIR); \
|
|
fi
|
|
|
|
if [ ! -f $(DESTDIR)$(ETCDIR)/$(CONF_FILE) ]; then \
|
|
install -m 644 $(CONF_FILE) $(DESTDIR)$(ETCDIR); \
|
|
fi
|