1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00

make install

This commit is contained in:
tg(x) 2011-05-09 02:27:12 +02:00
parent 211c0bcefb
commit 6a2b160066
9 changed files with 75 additions and 3 deletions

2
d/include/Makefile Normal file
View file

@ -0,0 +1,2 @@
install:
${MAKE} -C psyc install

13
d/include/psyc/Makefile Normal file
View file

@ -0,0 +1,13 @@
prefix = /usr
includedir = ${prefix}/include/d
INSTALL = install
HEADERS = common.d parser.d
install: ${HEADERS}
installdir:
${INSTALL} -d ${includedir}/psyc
${HEADERS}: installdir
${INSTALL} -m 644 $@ ${includedir}/psyc