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 :
|
||||
|
||||
Reference in New Issue
Block a user