libpsyc/include/psyc/Makefile

16 lines
304 B
Makefile
Raw Normal View History

2011-05-09 07:02:15 +00:00
# Why do we have a Makefile in the include directory?
2011-05-09 00:27:12 +00:00
prefix = /usr
includedir = ${prefix}/include
INSTALL = install
2011-05-09 07:02:15 +00:00
HEADERS = packet.h parse.h render.h syntax.h text.h
2011-05-09 00:27:12 +00:00
install: ${HEADERS}
installdir:
${INSTALL} -d ${includedir}/psyc
${HEADERS}: installdir
${INSTALL} -m 644 $@ ${includedir}/psyc