1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 13:09:22 +00:00

build: Prepare for using generated .h files in lib/.

* src/Makefile.in (CPPFLAGS): Add more -I options.
This commit is contained in:
Bruno Haible
2025-04-16 22:27:51 +02:00
parent ad7a21f223
commit 5533d54f9a
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2025-04-16 Bruno Haible <bruno@clisp.org>
build: Prepare for using generated .h files in lib/.
* src/Makefile.in (CPPFLAGS): Add more -I options.
2025-04-16 Bruno Haible <bruno@clisp.org>
build: Use gnulib-tool with a module list.

View File

@@ -1,6 +1,6 @@
# Makefile for gperf/src
# Copyright (C) 1989, 1992-1993, 1998, 2000, 2002-2003, 2006, 2009, 2012, 2020 Free Software Foundation, Inc.
# Copyright (C) 1989, 1992-1993, 1998, 2000, 2002-2003, 2006, 2009, 2012, 2020, 2025 Free Software Foundation, Inc.
# Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
# and Bruno Haible <bruno@clisp.org>.
#
@@ -64,7 +64,9 @@ VPATH = $(srcdir)
OBJECTS = version.$(OBJEXT) positions.$(OBJEXT) options.$(OBJEXT) keyword.$(OBJEXT) keyword-list.$(OBJEXT) \
input.$(OBJEXT) bool-array.$(OBJEXT) hash-table.$(OBJEXT) search.$(OBJEXT) output.$(OBJEXT) main.$(OBJEXT)
LIBS = ../lib/libgp.a @GPERF_LIBM@
CPPFLAGS = @CPPFLAGS@ -I. -I$(srcdir)/../lib
CPPFLAGS = @CPPFLAGS@ \
-I. -I$(srcdir) \
-I../lib -I$(srcdir)/../lib
TARGETPROG = gperf$(EXEEXT)