2001-05-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* comm/Makefile.am: Use *_HEADERS instead of *H_FILES.
This commit is contained in:
Joel Sherrill
2001-05-24 20:08:07 +00:00
parent 3243de16af
commit 84334ed4e5
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2001-05-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* comm/Makefile.am: Use *_HEADERS instead of *H_FILES.
2000-12-06 Joel Sherrill <joel@OARcorp.com>
* comm/console.c: Added casts to eliminate warnings.

View File

@@ -4,7 +4,7 @@
AUTOMAKE_OPTIONS = foreign 1.4
H_FILES = uart.h
include_HEADERS = uart.h
C_FILES = console.c uart.c
@@ -13,10 +13,11 @@ $(PROJECT_INCLUDE):
$(PROJECT_INCLUDE)/%.h: %.h
$(INSTALL_DATA) $< $@
PREINSTALL_FILES += $(PROJECT_INCLUDE) $(H_FILES:%.h=$(PROJECT_INCLUDE)/%.h)
PREINSTALL_FILES += $(PROJECT_INCLUDE) \
$(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
all: $(PREINSTALL_FILES)
EXTRA_DIST = console.c uart.c uart.h
EXTRA_DIST = console.c uart.c
include $(top_srcdir)/../../../../../automake/local.am