summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/unix/posix
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-08 13:00:05 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-08 13:00:05 +0000
commite6529eaa07f4ef1c56b0b51680e6e95f4dcc58e5 (patch)
tree1e86bf5f25c3b26f0f6fcee2dc22c567cb2221af /c/src/lib/libbsp/unix/posix
parent * cvme961/timer/timer.c: Include <rtems/zilog/z8536.h> instead of (diff)
downloadrtems-e6529eaa07f4ef1c56b0b51680e6e95f4dcc58e5.tar.bz2
2004-04-08 Ralf Corsepius <ralf_corsepius@rtems.org>
* Makefile.am: Build main.o for !HAS_CXX. Set EXEEXT = <empty> (Workaround to a bug in automake).
Diffstat (limited to 'c/src/lib/libbsp/unix/posix')
-rw-r--r--c/src/lib/libbsp/unix/posix/ChangeLog5
-rw-r--r--c/src/lib/libbsp/unix/posix/Makefile.am6
2 files changed, 8 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/unix/posix/ChangeLog b/c/src/lib/libbsp/unix/posix/ChangeLog
index 1da0eb4ae6..37847dafb8 100644
--- a/c/src/lib/libbsp/unix/posix/ChangeLog
+++ b/c/src/lib/libbsp/unix/posix/ChangeLog
@@ -1,3 +1,8 @@
+2004-04-08 Ralf Corsepius <ralf_corsepius@rtems.org>
+
+ * Makefile.am: Build main.o for !HAS_CXX.
+ Set EXEEXT = <empty> (Workaround to a bug in automake).
+
2004-04-01 Ralf Corsepius <ralf_corsepius@rtems.org>
* include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
diff --git a/c/src/lib/libbsp/unix/posix/Makefile.am b/c/src/lib/libbsp/unix/posix/Makefile.am
index e8bf246915..cb46be7be7 100644
--- a/c/src/lib/libbsp/unix/posix/Makefile.am
+++ b/c/src/lib/libbsp/unix/posix/Makefile.am
@@ -4,6 +4,8 @@
ACLOCAL_AMFLAGS = -I ../../../../aclocal
+EXEEXT =
+
# wrapup is the one that actually builds and installs the library
# from the individual .rel files built in other directories
SUBDIRS = . tools
@@ -22,8 +24,6 @@ noinst_DATA =
nodist_include_HEADERS += ../../shared/include/coverhd.h
-AM_CFLAGS += $(LIBC_DEFINES)
-
project_lib_DATA =
if HAS_CXX
@@ -45,7 +45,7 @@ EXTRA_PROGRAMS += startup.rel
CLEANFILES += startup.rel
startup_rel_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
startup/bspstart.c startup/setvec.c
-if HAS_CXX
+if !HAS_CXX
startup_rel_SOURCES += startup/main.c
endif