diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 85a0ddd4d..c7df4215c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -10,6 +10,7 @@ SHELL=@SH@ MFLAGS_STATIC= RM=@RM@ CC=@CC@ +AWK=@AWK@ CFLAGS=@CFLAGS@ @OPTIM@ LIBS=@LIBS@ LDFLAGS=@LDFLAGS@ $(LIBS) @@ -117,9 +118,9 @@ delete-exports: $(TARGET_EXPORTS): if test -z "$(srcdir)"; then \ - perl $(srcdir)helpers/make_export.pl -o $@ include/*.h; \ + $(AWK) -f $(srcdir)helpers/make_export.awk include/*.h > $@ ; \ else \ - perl $(srcdir)helpers/make_export.pl -o $@ include/*.h $(srcdir)include/*.h; \ + $(AWK) -f $(srcdir)helpers/make_export.awk include/*.h $(srcdir)include/*.h > $@ ; \ fi docs: |