# @configure_input@ # ### This file is included by all makefiles ### ### Start of system configuration section. ### # The following macros define the name of the library (libXXX.a), # header file directory (XXX/strutil.h), and header file (XXX.h). library = @library@ libshort = @libshort@ libnamebase = lib$(libshort).a incnamebase=$(library) headerbase=$(library).h fwdir = @srcdir@ #srcdir = @srcdir@ objdir = @objdir@ VPATH = @srcdir@ @SET_MAKE@ CC = @CC@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ # The following is the command used to install man pages. On some # systems, it might have to run things through nroff, col and a # compression program. On most systems, installing them the same # data files are installed is just as good. See also below about # the macros that define man page suffix and directories. INSTALL_MAN = $(INSTALL_DATA) ARADD = ar rc RANLIB = @RANLIB@ DEFS = @DEFS@ LIBS = @LIBS@ # C compiler options to set warning level WARNCFLAGS = @WARNCFLAGS@ CFLAGS=-I$(objdir)/include @CFLAGS@ @ASSERT@ -D__publib__ $(WARNCFLAGS) $(DEFS) LDFLAGS = @LDFLAGS@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = $(exec_prefix)/bin incdir = $(prefix)/include libdir = $(prefix)/lib mandir = $(prefix)/man man1dir = $(mandir)/man1 man1ext = 1 man3dir = $(mandir)/man3 man3ext = 3 ### End of system configuration section. ### ### You probably don't need to touch anything below this. ### It is just stuff that needs to be shared by all makefiles. libname = $(objdir)/$(libnamebase) .c.o: $(CC) $(CFLAGS) -o $(objdir)/$@ -c $<