source: rtems/c/src/lib/include/sys/Makefile.am @ dbdd7d4

4.104.114.84.95
Last change on this file since dbdd7d4 was dbdd7d4, checked in by Joel Sherrill <joel.sherrill@…>, on 09/24/01 at 18:24:11

2001-09-22 Ralf Corsepius <corsepiu@…>

  • include/sys/Makefile.am: Use = instead of += to setup NETWORKING_H_FILES and NEWLIB_H_FILES.
  • Property mode set to 100644
File size: 623 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7include_sysdir = $(includedir)/sys
8
9if HAS_NETWORKING
10else
11NETWORKING_H_FILES = ioctl.h
12endif
13
14if NEWLIB
15NEWLIB_H_FILES = termios.h cdefs.h
16endif
17
18include_sys_HEADERS = ioccom.h ttycom.h utime.h \
19  $(NEWLIB_H_FILES) $(NETWORKING_H_FILES)
20
21noinst_HEADERS = utime.h termios.h ioctl.h ioccom.h
22
23PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys \
24    $(include_sys_HEADERS:%=$(PROJECT_INCLUDE)/sys/%)
25
26$(PROJECT_INCLUDE)/sys:
27        @$(mkinstalldirs) $@
28$(PROJECT_INCLUDE)/sys/%.h: %.h
29        $(INSTALL_DATA) $< $@
30
31all-local: $(PREINSTALL_FILES)
32
33include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.