1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-07-31 00:21:03 +00:00
libpsyc/include/psyc/Makefile
psyc://psyced.org/~lynX 36491b4886 death the parser
2011-05-09 09:02:15 +02:00

16 lines
304 B
Makefile

# Why do we have a Makefile in the include directory?
prefix = /usr
includedir = ${prefix}/include
INSTALL = install
HEADERS = packet.h parse.h render.h syntax.h text.h
install: ${HEADERS}
installdir:
${INSTALL} -d ${includedir}/psyc
${HEADERS}: installdir
${INSTALL} -m 644 $@ ${includedir}/psyc