1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00
libpsyc/include/Makefile
psyc://loupsycedyglgamf.onion/~lynX 7ed845c4f2 support make install DESTDIR=...
1984-04-04 00:44:05 +00:00

13 lines
216 B
Makefile

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