2002-09-13 Joel Sherrill <joel@OARcorp.com>

* samples/hello/Makefile.am: Make sure init.c is compiled and
	included.  This test now runs.
This commit is contained in:
Joel Sherrill
2002-09-13 17:00:18 +00:00
parent d464fe7601
commit d7ff09b719
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2002-09-13 Joel Sherrill <joel@OARcorp.com>
* samples/hello/Makefile.am: Make sure init.c is compiled and
included. This test now runs.
2002-09-07 Joel Sherrill <joel@OARcorp.com>
* samples/base_mp/config.h: New file previously missed.

View File

@@ -5,9 +5,12 @@ include $(top_srcdir)/../../../automake/compile.am
include $(top_srcdir)/ada.am
hello$(EXEEXT): hello.adb
hello$(EXEEXT): hello.adb init.o
$(GNATCOMPILE) -margs -a $< -o $@
init.o: ../../support/init.c
$(COMPILE.c) -I$(srcdir) -c $<
noinst_PROGRAMS = hello
hello_SOURCES = hello.adb \