2002-09-03 Juli Mallett <jmallett@FreeBSD.org>
* parser/Makefile.in: Use $(CC) instead of 'cc'. svn path=/trunk/gtk-sharp/; revision=7232
This commit is contained in:
parent
d5954e56b8
commit
6fea628be5
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-09-03 Juli Mallett <jmallett@FreeBSD.org>
|
||||
|
||||
* parser/Makefile.in: Use $(CC) instead of 'cc'.
|
||||
|
||||
2002-09-01 Rodrigo Moya <rodrigo@ximian.com>
|
||||
|
||||
* gda/Application.cs: new class for libgda initialization and event
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
CC = @CC@
|
||||
|
||||
SCRIPTS = \
|
||||
gapi.pl \
|
||||
gapi_pp.pl \
|
||||
|
@ -8,7 +10,7 @@ MODULES=GAPI/Metadata.pm
|
|||
all: $(SCRIPTS) $(MODULES) gapi_format_xml
|
||||
|
||||
gapi_format_xml: formatXml.c
|
||||
cc -o gapi_format_xml formatXml.c `pkg-config --cflags --libs libxml-2.0 glib-2.0`
|
||||
$(CC) -o gapi_format_xml formatXml.c `pkg-config --cflags --libs libxml-2.0 glib-2.0`
|
||||
|
||||
clean:
|
||||
rm -f gapi_format_xml
|
||||
|
|
Loading…
Reference in a new issue