Changeset 6547cf0 in rtems


Ignore:
Timestamp:
11/26/03 15:31:12 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
3bfda69
Parents:
805d764d
Message:

2003-11-20 Ralf Corsepius <corsepiu@…>

  • acinclude.m4: New.
  • configure.ac: Don't use AUTOHEADER to generate cpuopts.h. Add local autoheader config.h.
  • aclocal/canonical-target-name.m4: Require AC_CANONICAL_HOST.
  • aclocal/enable-inlines.m4: Remove USE_MACROS (Unused).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/Makefile.am

    r805d764d r6547cf0  
    2020CLEANFILES = preinstall-stamp
    2121
    22 $(PROJECT_INCLUDE)/%.h: include/%.h
    23         $(INSTALL_DATA) $< $@
    24 
    25 $(PROJECT_INCLUDE):
    26         @$(mkinstalldirs) $@
    27 
    28 $(PROJECT_INCLUDE)/rtems:
    29         @$(mkinstalldirs) $@
    30 
    31 PREINSTALL_FILES = $(PROJECT_INCLUDE)
    32 
    3322include_rtemsdir = $(includedir)/rtems
    3423include_rtems_HEADERS = include/rtems/bspIo.h include/rtems/userenv.h \
    35   include/rtems/fs.h include/rtems/stdint.h
     24    include/rtems/fs.h include/rtems/stdint.h
    3625
    37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \
    38     $(include_rtems_HEADERS:include/%.h=$(PROJECT_INCLUDE)/%.h)
    39 
    40 all-local: $(PREINSTALL_FILES)
     26BUILT_SOURCES = $(PREINSTALL_FILES)
    4127
    4228AUTOMAKE_FILES = automake/compile.am automake/lib.am automake/local.am \
     
    4430EXTRA_DIST = $(AUTOMAKE_FILES)
    4531
     32PREINSTALL_FILES =
     33
     34$(PROJECT_INCLUDE)/rtems:
     35        @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems
     36PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems
     37
     38$(PROJECT_INCLUDE)/rtems/bspIo.h: include/rtems/bspIo.h
     39        $(INSTALL_DATA) $< $@
     40PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/bspIo.h
     41
     42$(PROJECT_INCLUDE)/rtems/userenv.h: include/rtems/userenv.h
     43        $(INSTALL_DATA) $< $@
     44PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/userenv.h
     45
     46$(PROJECT_INCLUDE)/rtems/fs.h: include/rtems/fs.h
     47        $(INSTALL_DATA) $< $@
     48PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/fs.h
     49
     50$(PROJECT_INCLUDE)/rtems/stdint.h: include/rtems/stdint.h
     51        $(INSTALL_DATA) $< $@
     52PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/stdint.h
     53
    4654include $(top_srcdir)/automake/subdirs.am
    4755include $(top_srcdir)/automake/local.am
Note: See TracChangeset for help on using the changeset viewer.