Changeset babf575 in rtems for cpukit/score/cpu/unix


Ignore:
Timestamp:
02/08/05 15:45:55 (19 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
624867b
Parents:
418372a1
Message:

2005-02-08 Ralf Corsepius <ralf.corsepius@…>

  • Makefile.am: Split out preinstallation rules.
  • preinstall.am: New (Split out from Makefile.am).
Location:
cpukit/score/cpu/unix
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/score/cpu/unix/ChangeLog

    r418372a1 rbabf575  
     12005-02-08      Ralf Corsepius <ralf.corsepius@rtems.org>
     2
     3        * Makefile.am: Split out preinstallation rules.
     4        * preinstall.am: New (Split out from Makefile.am).
     5
    162005-02-04      Ralf Corsepius <ralf.corsepius@rtems.org>
    27
  • cpukit/score/cpu/unix/Makefile.am

    r418372a1 rbabf575  
    44
    55include $(top_srcdir)/automake/compile.am
     6
     7CLEANFILES =
     8DISTCLEANFILES =
    69
    710AM_CPPFLAGS += -DCPU_SYNC_IO
     
    2023all-local: $(PREINSTALL_FILES)
    2124
    22 PREINSTALL_DIRS =
    23 PREINSTALL_FILES =
    24 
    25 $(PROJECT_INCLUDE)/rtems/$(dirstamp):
    26         @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
    27         @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
    28 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
    29 
    30 $(PROJECT_INCLUDE)/rtems/asm.h: rtems/asm.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
    31         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/asm.h
    32 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/asm.h
    33 
    34 $(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
    35         @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
    36         @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
    37 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
    38 
    39 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
    40         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
    41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
    42 
    43 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
    44         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
    45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
    46 
    47 $(PROJECT_INCLUDE)/rtems/score/unix.h: rtems/score/unix.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
    48         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/unix.h
    49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/unix.h
    50 
    51 CLEANFILES = $(PREINSTALL_FILES)
    52 DISTCLEANFILES = $(PREINSTALL_DIRS)
     25include $(srcdir)/preinstall.am
    5326
    5427include $(top_srcdir)/automake/local.am
Note: See TracChangeset for help on using the changeset viewer.