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

13 lines
250 B
Makefile

prefix = /usr
includedir = ${prefix}/include
INSTALL = install
HEADERS = packet.h parser.h render.h syntax.h text.h
install: ${HEADERS}
installdir:
${INSTALL} -d ${includedir}/psyc
${HEADERS}: installdir
${INSTALL} -m 644 $@ ${includedir}/psyc