eca30c3078
* gconf/Makefile.in, sample/Makefile.in: Use $(MAKE) not "make." * parser/Makefile.in: Use CFLAGS and CPPFLAGS hints from configure, and the base dependency CFLAGS. Fixes case where iconv.h is outside of the compiler's default path. svn path=/trunk/gtk-sharp/; revision=9578
35 lines
783 B
Makefile
35 lines
783 B
Makefile
CC = @CC@
|
|
CFLAGS = @CFLAGS@
|
|
CPPFLAGS = @CPPFLAGS@
|
|
BASE_DEPENDENCIES_CFLAGS = @BASE_DEPENDENCIES_CFLAGS@
|
|
|
|
SCRIPTS = \
|
|
gapi.pl \
|
|
gapi_pp.pl \
|
|
gapi2xml.pl
|
|
|
|
MODULES=GAPI/Metadata.pm
|
|
|
|
all: $(SCRIPTS) $(MODULES) gapi_format_xml
|
|
|
|
gapi_format_xml: formatXml.c
|
|
$(CC) $(CPPFLAGS) -o gapi_format_xml formatXml.c `pkg-config --cflags --libs libxml-2.0 glib-2.0` $(CFLAGS) $(BASE_DEPENDENCIES_CFLAGS)
|
|
|
|
clean:
|
|
rm -f gapi_format_xml
|
|
|
|
distclean:
|
|
rm -f Makefile gapi_format_xml
|
|
|
|
prefix=@prefix@
|
|
DESTDIR=
|
|
|
|
install: all
|
|
for i in $(SCRIPTS) gapi_format_xml; do \
|
|
../mkinstalldirs $(DESTDIR)$(prefix)/bin && \
|
|
cp $$i $(DESTDIR)$(prefix)/bin; \
|
|
done
|
|
for i in $(MODULES); do \
|
|
../mkinstalldirs $(DESTDIR)$(prefix)/share/perl5/GAPI && \
|
|
cp $$i $(DESTDIR)$(prefix)/share/perl5/GAPI; \
|
|
done
|