git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1092 0109f412-320b-0410-ab79-c3e0c5ffbbe6
22 lines
503 B
Makefile
22 lines
503 B
Makefile
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = GNUMakefile README.W32 win32
|
|
|
|
SUBDIRS = $(subdirs) src obs
|
|
|
|
doc_DATA = AUTHORS ChangeLog COPYING INSTALL NEWS README
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libflaimsql.pc
|
|
|
|
rpms srcrpm: dist
|
|
$(MAKE) -C obs $(AM_MAKEFLAGS) $@
|
|
rpmarch=`rpm --showrc | grep ^build\ arch | sed 's/\(.*: \)\(.*\)/\2/'`; \
|
|
test -z $$rpmarch || ( mv $$rpmarch/* .; rm -rf $$rpmarch )
|
|
rm -rf $(distdir)
|
|
|
|
dist-hook:
|
|
rm -rf `find $(distdir) -name .svn`
|
|
|
|
.PHONY: srcrpm rpms
|