1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-07 21:19:06 +00:00
libpsyc/include/Makefile
2011-05-09 02:27:12 +02:00

15 lines
229 B
Makefile

prefix = /usr
includedir = ${prefix}/include
INSTALL = install
HEADERS = psyc.h
install: ${HEADERS}
${MAKE} -C psyc install
installdir:
${INSTALL} -d ${includedir}
${HEADERS}: installdir
${INSTALL} -m 644 $@ ${includedir}