require automake 1.7 in condifure.in; update all Makefile.am: add comments,

replace obsoleted INCLUDES by AM_CPPFLAGS
This commit is contained in:
marschap
2006-01-16 19:36:58 +00:00
parent b24543aadf
commit aeffd250a1
17 changed files with 96 additions and 11 deletions
+10 -1
View File
@@ -1,6 +1,15 @@
## Process this file with automake to produce Makefile.in
SUBDIRS=drivers commands
sbin_PROGRAMS=LCDd
LCDd_SOURCES= client.c client.h clients.c clients.h input.c input.h main.c main.h menuitem.c menuitem.h menu.c menu.h menuscreens.c menuscreens.h parse.c parse.h render.c render.h screen.c screen.h screenlist.c screenlist.h serverscreens.c serverscreens.h sock.c sock.h widget.c widget.h drivers.c drivers.h driver.c driver.h
LCDd_LDADD = @ldap_libs@ ../shared/libLCDstuff.a commands/libLCDcommands.a
LCDd_LDFLAGS = -rdynamic -uget_args
INCLUDES = -I$(top_srcdir)
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/shared
## EOF
+7 -1
View File
@@ -1,3 +1,9 @@
## Process this file with automake to produce Makefile.in
noinst_LIBRARIES = libLCDcommands.a
libLCDcommands_a_SOURCES = command_list.c command_list.h client_commands.c client_commands.h menu_commands.c menu_commands.h screen_commands.c screen_commands.h server_commands.c server_commands.h widget_commands.c widget_commands.h
INCLUDES = -I$(top_srcdir) -I$(srcdir)/..
AM_CPPFLAGS = -I$(top_srcdir) -I$(srcdir)/..
## EOF
+4 -2
View File
@@ -1,9 +1,10 @@
## Process this file with automake to produce Makefile.in
## We use bin_ to generate the shared libraries, because automake only
## supports libtool shared libraries. But we don't want to use libtool...
##
## configure replaces all occurrences of so to the appropriate extension
## (without dot!)
##
## Fill in loadable module extension
EXEEXT = @SO@
@@ -80,5 +81,6 @@ tyan_SOURCES = lcd.h tyan_lcdm.h tyan_lcdm.c report.h
wirz_sli_SOURCES = lcd.h wirz-sli.h wirz-sli.c report.h
xosd_SOURCES = lcd.h xosdlib_drv.c xosdlib_drv.h report.h
INCLUDES = -I$(top_srcdir)
AM_CPPFLAGS = -I$(top_srcdir)
## EOF