1 | # |
---|
2 | # $Id$ |
---|
3 | # |
---|
4 | |
---|
5 | @SET_MAKE@ |
---|
6 | srcdir = @srcdir@ |
---|
7 | top_srcdir = @top_srcdir@ |
---|
8 | top_builddir = ../../../.. |
---|
9 | subdir = libbsp/powerpc/mvme2307/timer |
---|
10 | |
---|
11 | RTEMS_ROOT = @RTEMS_ROOT@ |
---|
12 | PROJECT_ROOT = @PROJECT_ROOT@ |
---|
13 | |
---|
14 | VPATH = @srcdir@ |
---|
15 | |
---|
16 | PGM=${ARCH}/timer.rel |
---|
17 | |
---|
18 | # C source names, if any, go here -- minus the .c |
---|
19 | C_PIECES=timer |
---|
20 | C_FILES=$(C_PIECES:%=%.c) |
---|
21 | C_O_FILES=$(C_PIECES:%=${ARCH}/%.o) |
---|
22 | |
---|
23 | H_FILES= |
---|
24 | |
---|
25 | # Assembly source names, if any, go here -- minus the .S |
---|
26 | S_PIECES= |
---|
27 | S_FILES=$(S_PIECES:%=%.S) |
---|
28 | S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o) |
---|
29 | |
---|
30 | SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES) |
---|
31 | OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES) |
---|
32 | |
---|
33 | include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg |
---|
34 | include $(RTEMS_ROOT)/make/leaf.cfg |
---|
35 | |
---|
36 | INSTALL_CHANGE = @INSTALL_CHANGE@ |
---|
37 | |
---|
38 | # |
---|
39 | # (OPTIONAL) Add local stuff here using += |
---|
40 | # |
---|
41 | |
---|
42 | DEFINES += |
---|
43 | CPPFLAGS += |
---|
44 | CFLAGS += |
---|
45 | |
---|
46 | LD_PATHS += |
---|
47 | LD_LIBS += |
---|
48 | LDFLAGS += |
---|
49 | |
---|
50 | # |
---|
51 | # Add your list of files to delete here. The config files |
---|
52 | # already know how to delete some stuff, so you may want |
---|
53 | # to just run 'make clean' first to see what gets missed. |
---|
54 | # 'make clobber' already includes 'make clean' |
---|
55 | # |
---|
56 | |
---|
57 | CLEAN_ADDITIONS += |
---|
58 | CLOBBER_ADDITIONS += |
---|
59 | |
---|
60 | ${PGM}: ${SRCS} ${OBJS} |
---|
61 | $(make-rel) |
---|
62 | |
---|
63 | all: ${ARCH} $(SRCS) $(PGM) |
---|
64 | |
---|
65 | # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile |
---|
66 | install: all |
---|
67 | |
---|
68 | Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status |
---|
69 | cd $(top_builddir) \ |
---|
70 | && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status |
---|