mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
15 lines
189 B
Makefile
15 lines
189 B
Makefile
libdir = ${DESTDIR}/lib
|
|
|
|
INSTALL = install
|
|
LIBS = libpsyc.a libpsyc.so
|
|
|
|
install: ${LIBS}
|
|
|
|
libdir:
|
|
${INSTALL} -d ${libdir}
|
|
|
|
${LIBS}: libdir
|
|
-${INSTALL} $@ ${libdir}
|
|
|
|
clean:
|
|
rm -f ${LIBS}
|