source: rtems/c/src/lib/libcpu/powerpc/ppc403/Makefile.am @ d3d9ef37

4.104.114.84.95
Last change on this file since d3d9ef37 was f97f0c74, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/07/05 at 06:19:08

2005-01-07 Ralf Corsepius <ralf.corsepius@…>

  • mpc505/Makefile.am, mpc5xx/Makefile.am, mpc6xx/Makefile.am, mpc8260/Makefile.am, mpc8xx/Makefile.am, ppc403/Makefile.am, shared/Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
  • Property mode set to 100644
File size: 1.9 KB
RevLine 
[df49c60]1##
[400c552]2## $Id$
[df49c60]3##
[400c552]4
[ba4eefd]5CLEANFILES =
[05180c1]6EXTRA_DIST =
[65918026]7noinst_PROGRAMS =
[05180c1]8
9include $(top_srcdir)/../../../automake/compile.am
10
[ba4eefd]11if ppc403
[05180c1]12## clock
[65918026]13noinst_PROGRAMS += clock.rel
[ba4eefd]14clock_rel_SOURCES = clock/clock.c
[f97f0c74]15clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
[ba4eefd]16clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
[05180c1]17
18## console
[65918026]19noinst_PROGRAMS += console.rel
[05180c1]20if ppc405
[ba4eefd]21console_rel_SOURCES = console/console405.c
22else
23console_rel_SOURCES = console/console.c
[05180c1]24endif
[f97f0c74]25console_rel_CPPFLAGS = $(AM_CPPFLAGS)
[ba4eefd]26console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
27
[05180c1]28## ictrl
29include_HEADERS = ictrl/ictrl.h
[ba4eefd]30
[65918026]31noinst_PROGRAMS += ictrl.rel
[ba4eefd]32ictrl_rel_SOURCES = ictrl/ictrl.c ictrl/ictrl.h
[f97f0c74]33ictrl_rel_CPPFLAGS = $(AM_CPPFLAGS)
[ba4eefd]34ictrl_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
35
[05180c1]36## timer
[65918026]37noinst_PROGRAMS += timer.rel
[ba4eefd]38timer_rel_SOURCES = timer/timer.c
[f97f0c74]39timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
[ba4eefd]40timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
[05180c1]41
42## tty_drv
43if ppc405
44include_HEADERS += tty_drv/tty_drv.h
[ba4eefd]45
[65918026]46noinst_PROGRAMS += tty_drv.rel
[ba4eefd]47tty_drv_rel_SOURCES = tty_drv/tty_drv.c tty_drv/tty_drv.h
[f97f0c74]48tty_drv_rel_CPPFLAGS = $(AM_CPPFLAGS)
[ba4eefd]49tty_drv_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
[e9ae97fb]50endif
[05180c1]51
52## vectors
[65918026]53noinst_PROGRAMS += vectors.rel
[ba4eefd]54vectors_rel_SOURCES = vectors/vectors.S vectors/align_h.S
[f97f0c74]55vectors_rel_CPPFLAGS = $(AM_CPPFLAGS)
[ba4eefd]56vectors_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
57endif
[05180c1]58
59## --
60all-local: $(PREINSTALL_FILES)
61
[ba4eefd]62PREINSTALL_DIRS =
[05180c1]63PREINSTALL_FILES =
64
65$(PROJECT_INCLUDE)/$(dirstamp):
66        @$(mkdir_p) $(PROJECT_INCLUDE)
67        @: > $(PROJECT_INCLUDE)/$(dirstamp)
[ba4eefd]68PREINSTALL_DIRS += $(PROJECT_INCLUDE)/$(dirstamp)
69
70if ppc403
[05180c1]71
72$(PROJECT_INCLUDE)/ictrl.h: ictrl/ictrl.h $(PROJECT_INCLUDE)/$(dirstamp)
73        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/ictrl.h
74PREINSTALL_FILES += $(PROJECT_INCLUDE)/ictrl.h
75
[e9ae97fb]76if ppc405
[05180c1]77$(PROJECT_INCLUDE)/tty_drv.h: tty_drv/tty_drv.h $(PROJECT_INCLUDE)/$(dirstamp)
78        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/tty_drv.h
79PREINSTALL_FILES += $(PROJECT_INCLUDE)/tty_drv.h
[e9ae97fb]80endif
[ba4eefd]81endif
[400c552]82
[ba4eefd]83CLEANFILES += $(PREINSTALL_FILES)
84DISTCLEANFILES = $(PREINSTALL_DIRS)
[81b29d79]85
[bf0747d]86include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.