mirror of
https://git.code.sf.net/p/flwm/flwm
synced 2025-12-11 23:06:56 -05:00
Remove some warnings from configure+make on modern systems
This commit is contained in:
9
Makefile
9
Makefile
@ -16,16 +16,19 @@ all: makeinclude $(PROGRAM)
|
||||
$(PROGRAM) : $(OBJECTS)
|
||||
$(CXX) $(LDFLAGS) -o $(PROGRAM) $(OBJECTS) $(LIBS)
|
||||
|
||||
makeinclude: configure
|
||||
configure: configure.in
|
||||
autoconf
|
||||
|
||||
makeinclude: configure makeinclude.in
|
||||
./configure
|
||||
include makeinclude
|
||||
|
||||
.SUFFIXES : .fl .do .C .c .H
|
||||
|
||||
.C.o :
|
||||
$(CXX) $(CXXFLAGS) -c $<
|
||||
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
||||
.C :
|
||||
$(CXX) $(CXXFLAGS) -c $<
|
||||
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
||||
.fl.C :
|
||||
-fluid -c $<
|
||||
.fl.H :
|
||||
|
||||
@ -7,7 +7,6 @@ AC_PROG_CXX
|
||||
AC_PROG_INSTALL
|
||||
|
||||
AC_PATH_XTRA
|
||||
echo "Ignoring libraries \"$X_PRE_LIBS\" requested by configure."
|
||||
dnl# LIBS="$LIBS$X_LIBS$X_PRE_LIBS"
|
||||
LIBS="$LIBS$X_LIBS"
|
||||
|
||||
|
||||
@ -8,6 +8,7 @@ includedir =@includedir@
|
||||
libdir =@libdir@
|
||||
srcdir =@srcdir@
|
||||
VPATH =@srcdir@
|
||||
datarootdir =@datarootdir@
|
||||
|
||||
# compiler names:
|
||||
CXX =@CXX@
|
||||
|
||||
Reference in New Issue
Block a user