source: rtems/c/src/lib/libcpu/powerpc/mpc505/Makefile.am @ 65918026

4.104.114.84.95
Last change on this file since 65918026 was 65918026, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/02/05 at 12:39:29

2005-01-02 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: Remove build-variant support.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1##
2## $Id$
3##
4
5CLEANFILES =
6EXTRA_DIST =
7noinst_PROGRAMS =
8
9include $(top_srcdir)/../../../automake/compile.am
10
11if mpc505
12# ictrl
13include_HEADERS = ictrl/ictrl.h
14
15noinst_PROGRAMS += ictrl.rel
16ictrl_rel_SOURCES = ictrl/ictrl.c
17ictrl_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
18ictrl_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
19
20## timer
21noinst_PROGRAMS += timer.rel
22timer_rel_SOURCES = timer/timer.c
23timer_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
24timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
25
26## vector
27vectors_S_FILES = vectors/vectors.S
28
29noinst_PROGRAMS += vectors.rel
30vectors_rel_SOURCES = vectors/vectors.S
31vectors_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
32vectors_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
33endif
34
35## --
36
37all-local: $(PREINSTALL_FILES)
38
39PREINSTALL_DIRS =
40PREINSTALL_FILES =
41
42$(PROJECT_INCLUDE)/$(dirstamp):
43        @$(mkdir_p) $(PROJECT_INCLUDE)
44        @: > $(PROJECT_INCLUDE)/$(dirstamp)
45PREINSTALL_DIRS += $(PROJECT_INCLUDE)/$(dirstamp)
46
47if mpc505
48$(PROJECT_INCLUDE)/ictrl.h: ictrl/ictrl.h $(PROJECT_INCLUDE)/$(dirstamp)
49        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/ictrl.h
50PREINSTALL_FILES += $(PROJECT_INCLUDE)/ictrl.h
51endif
52
53CLEANFILES += $(PREINSTALL_FILES)
54DISTCLEANFILES = $(PREINSTALL_DIRS)
55
56include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.