mirror of
https://github.com/haiwen/ccnet-server.git
synced 2025-04-27 10:20:49 +00:00
23 lines
469 B
Makefile
23 lines
469 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
pcfiles = libccnet.pc
|
|
pkgconfig_DATA = $(pcfiles)
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
SUBDIRS = include lib net tools python
|
|
|
|
EXTRA_DIST = install-sh libccnet.pc.in LICENSE.txt
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
install-data-local:
|
|
if MACOS
|
|
sed -i '' -e "s|(DESTDIR)|${DESTDIR}|g" $(pcfiles)
|
|
else
|
|
${SED} -i "s|(DESTDIR)|${DESTDIR}|g" $(pcfiles)
|
|
endif
|
|
|
|
dist-hook:
|
|
git log --format='%H' -1 > $(distdir)/latest_commit
|