Install the xbps_api.h header.

--HG--
extra : convert_revision : xtraeme%40gmail.com-20100113183225-gz8xn8fa5hp2vdan
This commit is contained in:
Juan RP
2010-01-13 19:32:25 +01:00
parent 05bad9c0d5
commit 27dd304d76
4 changed files with 24 additions and 5 deletions

18
include/Makefile Normal file
View File

@@ -0,0 +1,18 @@
include ../vars.mk
INCS = xbps_api.h
.PHONY: all
all:
.PHONY: install
install:
install -d $(INCLUDEDIR)
install -m 644 $(INCS) $(INCLUDEDIR)
.PHONY: uninstall
uninstall:
-rm -f $(INCLUDEDIR)/$(INCS)
.PHONY: clean
clean: