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).
This commit is contained in:
Ralf Corsepius
2004-04-08 13:00:05 +00:00
parent 4addbfa62e
commit e6529eaa07
2 changed files with 8 additions and 3 deletions

View File

@@ -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>.

View File

@@ -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