summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/libnetworking/ChangeLog8
-rw-r--r--c/src/libnetworking/pppd/Makefile.am2
-rw-r--r--c/src/libnetworking/rtems_servers/Makefile.am2
-rw-r--r--c/src/libnetworking/rtems_telnetd/Makefile.am2
-rw-r--r--c/src/libnetworking/rtems_webserver/Makefile.am2
-rw-r--r--c/src/libnetworking/wrapup/Makefile.am2
-rw-r--r--cpukit/ftpd/Makefile.am2
-rw-r--r--cpukit/httpd/Makefile.am2
-rw-r--r--cpukit/pppd/Makefile.am2
-rw-r--r--cpukit/telnetd/Makefile.am2
10 files changed, 17 insertions, 9 deletions
diff --git a/c/src/libnetworking/ChangeLog b/c/src/libnetworking/ChangeLog
index 319fa5ca6e..ff57dda16e 100644
--- a/c/src/libnetworking/ChangeLog
+++ b/c/src/libnetworking/ChangeLog
@@ -1,3 +1,11 @@
+2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * pppd/Makefile.am: Use .$(OBJEXT) instead of .o.
+ * rtems_servers/Makefile.am: Use .$(OBJEXT) instead of .o.
+ * rtems_telnetd/Makefile.am: Use .$(OBJEXT) instead of .o.
+ * rtems_webserver/Makefile.am: Use .$(OBJEXT) instead of .o.
+ * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
+
2002-07-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* pppd/chap.c, pppd/fsm.c, pppd/fsm.h, pppd/upap.c: Per PR255
diff --git a/c/src/libnetworking/pppd/Makefile.am b/c/src/libnetworking/pppd/Makefile.am
index 4b2db51c05..e6ee58a2c7 100644
--- a/c/src/libnetworking/pppd/Makefile.am
+++ b/c/src/libnetworking/pppd/Makefile.am
@@ -12,7 +12,7 @@ LIB = $(ARCH)/$(LIBNAME)
C_FILES = auth.c ccp.c chap.c chap_ms.c chat.c demand.c fsm.c ipcp.c lcp.c \
magic.c options.c upap.c md4.c md5.c utils.c sys-rtems.c rtemsmain.c \
rtemspppd.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
+C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
diff --git a/c/src/libnetworking/rtems_servers/Makefile.am b/c/src/libnetworking/rtems_servers/Makefile.am
index 140d0c37d0..0c83936d58 100644
--- a/c/src/libnetworking/rtems_servers/Makefile.am
+++ b/c/src/libnetworking/rtems_servers/Makefile.am
@@ -9,7 +9,7 @@ LIBNAME = lib.a
LIB = $(ARCH)/$(LIBNAME)
C_FILES = ftpd.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
+C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
diff --git a/c/src/libnetworking/rtems_telnetd/Makefile.am b/c/src/libnetworking/rtems_telnetd/Makefile.am
index eb5e790aa2..5b644b1e08 100644
--- a/c/src/libnetworking/rtems_telnetd/Makefile.am
+++ b/c/src/libnetworking/rtems_telnetd/Makefile.am
@@ -9,7 +9,7 @@ LIBNAME = libtelnetd-tmp
LIB = $(ARCH)/$(LIBNAME).a
C_FILES = pty.c telnetd.c icmds.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
+C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
include_rtems_HEADERS = pty.h telnetd.h
diff --git a/c/src/libnetworking/rtems_webserver/Makefile.am b/c/src/libnetworking/rtems_webserver/Makefile.am
index acc24295fe..f3f9652122 100644
--- a/c/src/libnetworking/rtems_webserver/Makefile.am
+++ b/c/src/libnetworking/rtems_webserver/Makefile.am
@@ -12,7 +12,7 @@ C_FILES = asp.c balloc.c default.c ejlex.c ejparse.c emfdb.c form.c \
h.c handler.c md5c.c mime.c misc.c webpage.c ringq.c rom.c security.c \
sock.c socket.c sym.c uemf.c um.c url.c value.c wbase64.c webrom.c webs.c \
websuemf.c webmain.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
+C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
diff --git a/c/src/libnetworking/wrapup/Makefile.am b/c/src/libnetworking/wrapup/Makefile.am
index 5485386338..3d3f9294f6 100644
--- a/c/src/libnetworking/wrapup/Makefile.am
+++ b/c/src/libnetworking/wrapup/Makefile.am
@@ -9,7 +9,7 @@ endif
NET_O_PIECES = rtems_servers \
rtems_telnetd pppd $(POSIX_PIECES)
-OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.o)
+OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.$(OBJEXT))
LIB = $(ARCH)/libnetapps.a
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
diff --git a/cpukit/ftpd/Makefile.am b/cpukit/ftpd/Makefile.am
index 140d0c37d0..0c83936d58 100644
--- a/cpukit/ftpd/Makefile.am
+++ b/cpukit/ftpd/Makefile.am
@@ -9,7 +9,7 @@ LIBNAME = lib.a
LIB = $(ARCH)/$(LIBNAME)
C_FILES = ftpd.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
+C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
diff --git a/cpukit/httpd/Makefile.am b/cpukit/httpd/Makefile.am
index acc24295fe..f3f9652122 100644
--- a/cpukit/httpd/Makefile.am
+++ b/cpukit/httpd/Makefile.am
@@ -12,7 +12,7 @@ C_FILES = asp.c balloc.c default.c ejlex.c ejparse.c emfdb.c form.c \
h.c handler.c md5c.c mime.c misc.c webpage.c ringq.c rom.c security.c \
sock.c socket.c sym.c uemf.c um.c url.c value.c wbase64.c webrom.c webs.c \
websuemf.c webmain.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
+C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
diff --git a/cpukit/pppd/Makefile.am b/cpukit/pppd/Makefile.am
index 4b2db51c05..e6ee58a2c7 100644
--- a/cpukit/pppd/Makefile.am
+++ b/cpukit/pppd/Makefile.am
@@ -12,7 +12,7 @@ LIB = $(ARCH)/$(LIBNAME)
C_FILES = auth.c ccp.c chap.c chap_ms.c chat.c demand.c fsm.c ipcp.c lcp.c \
magic.c options.c upap.c md4.c md5.c utils.c sys-rtems.c rtemsmain.c \
rtemspppd.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
+C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
diff --git a/cpukit/telnetd/Makefile.am b/cpukit/telnetd/Makefile.am
index eb5e790aa2..5b644b1e08 100644
--- a/cpukit/telnetd/Makefile.am
+++ b/cpukit/telnetd/Makefile.am
@@ -9,7 +9,7 @@ LIBNAME = libtelnetd-tmp
LIB = $(ARCH)/$(LIBNAME).a
C_FILES = pty.c telnetd.c icmds.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
+C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
include_rtems_HEADERS = pty.h telnetd.h