mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
make install
This commit is contained in:
parent
211c0bcefb
commit
6a2b160066
9 changed files with 75 additions and 3 deletions
14
include/Makefile
Normal file
14
include/Makefile
Normal file
|
@ -0,0 +1,14 @@
|
|||
prefix = /usr
|
||||
includedir = ${prefix}/include
|
||||
|
||||
INSTALL = install
|
||||
HEADERS = psyc.h
|
||||
|
||||
install: ${HEADERS}
|
||||
${MAKE} -C psyc install
|
||||
|
||||
installdir:
|
||||
${INSTALL} -d ${includedir}
|
||||
|
||||
${HEADERS}: installdir
|
||||
${INSTALL} -m 644 $@ ${includedir}
|
13
include/psyc/Makefile
Normal file
13
include/psyc/Makefile
Normal file
|
@ -0,0 +1,13 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue