Changeset 282e195d in rtems


Ignore:
Timestamp:
02/04/04 16:33:03 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
4ba223e1
Parents:
76f3064a
Message:

2004-02-04 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Don't install, just distribute the files.
Location:
c/src/lib/libbsp/powerpc/shared
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/powerpc/shared/ChangeLog

    r76f3064a r282e195d  
     12004-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * Makefile.am: Don't install, just distribute the files.
     4
    152004-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    26
  • c/src/lib/libbsp/powerpc/shared/Makefile.am

    r76f3064a r282e195d  
    44
    55# FIXME: Herein lies madness ;)
    6 
    7 if need_shared
    8 include_bspdir = $(includedir)/bsp
    96
    107## include
     
    2623    console/uart.c console/reboot.c console/console.inl
    2724
    28 include_bsp_HEADERS = console/consoleIo.h console/keyboard.h console/uart.h
    29 
    3025## motorola
    31 EXTRA_DIST += motorola.c
    32 
    33 include_bsp_HEADERS += motorola.h
     26EXTRA_DIST += motorola/motorola.c
    3427
    3528## pci
    3629EXTRA_DIST += pci/pci.c pci/detect_raven_bridge.c pci/pcifinddevice.c
    3730
    38 include_bsp_HEADERS += pci/pci.h
    39 
    4031## residual
    4132EXTRA_DIST += residual/residual.c
    42 
    43 include_bsp_HEADERS += residual/pnp.h residual/residual.h
    4433
    4534## openpic
    4635EXTRA_DIST += openpic/openpic.c
    4736
    48 include_bsp_HEADERS += openpic/openpic.h
    49 
    5037## irq
    5138EXTRA_DIST += irq/i8259.c irq/irq.c irq/irq_init.c irq/irq_asm.S
    52 
    53 include_bsp_HEADERS += irq/irq.h
    5439
    5540## start
     
    6449EXTRA_DIST += vectors/vectors_init.c vectors/vectors.S
    6550
    66 include_bsp_HEADERS += vectors.h
    67 
    6851## vme
    69 # FIXME: This doesn't make much sense here
    70 EXTRA_DIST += vmeconfig.c VMEConfig.h VME.h
    71 endif
    72 
    73 PREINSTALL_DIRS =
    74 PREINSTALL_FILES =
    75 
    76 if need_shared
    77 $(PROJECT_INCLUDE)/bsp/$(dirstamp):
    78         @$(mkdir_p) $(PROJECT_INCLUDE)/bsp
    79         @: > $(PROJECT_INCLUDE)/bsp/$(dirstamp)
    80 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/bsp/$(dirstamp)
    81 
    82 $(PROJECT_INCLUDE)/bsp/consoleIo.h: console/consoleIo.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
    83         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/consoleIo.h
    84 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/consoleIo.h
    85 
    86 $(PROJECT_INCLUDE)/bsp/keyboard.h: console/keyboard.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
    87         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/keyboard.h
    88 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/keyboard.h
    89 
    90 $(PROJECT_INCLUDE)/bsp/uart.h: console/uart.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
    91         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/uart.h
    92 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/uart.h
    93 
    94 $(PROJECT_INCLUDE)/bsp/motorola.h: motorola.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
    95         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/motorola.h
    96 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/motorola.h
    97 
    98 $(PROJECT_INCLUDE)/bsp/pci.h: pci/pci.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
    99         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/pci.h
    100 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/pci.h
    101 
    102 $(PROJECT_INCLUDE)/bsp/pnp.h: residual/pnp.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
    103         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/pnp.h
    104 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/pnp.h
    105 
    106 $(PROJECT_INCLUDE)/bsp/residual.h: residual/residual.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
    107         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/residual.h
    108 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/residual.h
    109 
    110 $(PROJECT_INCLUDE)/bsp/openpic.h: openpic/openpic.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
    111         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/openpic.h
    112 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/openpic.h
    113 
    114 $(PROJECT_INCLUDE)/bsp/irq.h: irq/irq.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
    115         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/irq.h
    116 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/irq.h
    117 
    118 $(PROJECT_INCLUDE)/bsp/vectors.h: vectors.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
    119         $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/vectors.h
    120 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/vectors.h
    121 endif
    122 
    123 CLEANFILES = $(PREINSTALL_FILES)
    124 DISTCLEANFILES = $(PREINSTALL_DIRS)
     52EXTRA_DIST += vme/vmeconfig.c vme/VMEConfig.h vme/VME.h
    12553
    12654include $(top_srcdir)/../../../automake/local.am
Note: See TracChangeset for help on using the changeset viewer.