mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
12 lines
264 B
Makefile
12 lines
264 B
Makefile
includedir = ${PREFIX}/include
|
|
|
|
INSTALL = install
|
|
HEADERS = match.h method.h packet.h parse.h render.h text.h uniform.h variable.h
|
|
|
|
install: ${HEADERS}
|
|
|
|
installdir:
|
|
${INSTALL} -d ${includedir}/psyc
|
|
|
|
${HEADERS}: installdir
|
|
${INSTALL} -m 644 $@ ${includedir}/psyc
|