source: rtems/c/src/lib/include/Makefile.am @ 485e80fa

4.104.114.84.95
Last change on this file since 485e80fa was 485e80fa, checked in by Joel Sherrill <joel.sherrill@…>, on 04/16/02 at 13:23:40

2002-04-16 Ralf Corsepius <corsepiu@…>

  • include/Makefile.am: Add stdint.h and inttypes.h. (reported by Mike Siers <mikes@…>)
  • include/stdint.h: New file.
  • include/inttypes.h: New file.
  • Property mode set to 100644
File size: 1.7 KB
RevLine 
[e1d8abb]1##
2## $Id$
3##
4
5
[29e1c006]6include_HEADERS = chain.h console.h clockdrv.h iosupp.h ringbuf.h rtc.h \
[d6a2d7ee]7    spurious.h timerdrv.h vmeintr.h
[e1d8abb]8
[485e80fa]9LIBC_HFILES = stdint.h inttypes.h
10include_HEADERS += $(LIBC_HFILES)
11
[4154b62]12PREINSTALL_FILES = $(PROJECT_INCLUDE) \
[f3d7592]13    $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
[e1d8abb]14
15$(PROJECT_INCLUDE):
16        @$(mkinstalldirs) $@
[49ed8e7]17$(PROJECT_INCLUDE)/motorola:
18        @$(mkinstalldirs) $@
19$(PROJECT_INCLUDE)/rtems:
20        @$(mkinstalldirs) $@
21$(PROJECT_INCLUDE)/sys:
22        @$(mkinstalldirs) $@
23$(PROJECT_INCLUDE)/zilog:
24        @$(mkinstalldirs) $@
25
[e1d8abb]26$(PROJECT_INCLUDE)/%.h: %.h
27        $(INSTALL_DATA) $< $@
28
[49ed8e7]29## motorola
30
31include_motoroladir = $(includedir)/motorola
32
33include_motorola_HEADERS = motorola/mc68230.h motorola/mc68681.h
34
35PREINSTALL_FILES += $(PROJECT_INCLUDE)/motorola \
36    $(include_motorola_HEADERS:%=$(PROJECT_INCLUDE)/%)
37
38## rtems
39include_rtemsdir = $(includedir)/rtems
40
41include_rtems_HEADERS = \
42    rtems/assoc.h rtems/error.h rtems/libcsupport.h rtems/libio.h rtems/libio_.h \
43    rtems/termiostypes.h
44
45PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \
46    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/%)
[e1d8abb]47
[49ed8e7]48## sys
49
50include_sysdir = $(includedir)/sys
51
52if !HAS_NETWORKING
53NETWORKING_H_FILES = sys/ioctl.h
54endif
55
56if NEWLIB
57NEWLIB_H_FILES = sys/termios.h sys/cdefs.h
58endif
59
60include_sys_HEADERS = \
61sys/ioccom.h \
62sys/ttycom.h \
63sys/utime.h \
64$(NEWLIB_H_FILES) $(NETWORKING_H_FILES)
65
66PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys \
67    $(include_sys_HEADERS:%=$(PROJECT_INCLUDE)/%)
68
69## zilog
70
71include_zilogdir = $(includedir)/zilog
72
73include_zilog_HEADERS = zilog/z8036.h zilog/z8530.h zilog/z8536.h
74
75PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog \
76    $(include_zilog_HEADERS:%=$(PROJECT_INCLUDE)/%)
77
78##  General stuff
79all-local: $(PREINSTALL_FILES)
[e1d8abb]80
81include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.