source: rtems/c/src/lib/libbsp/m68k/ods68302/start/Makefile.in @ f99d4f83

4.104.114.84.95
Last change on this file since f99d4f83 was 0074691a, checked in by Joel Sherrill <joel.sherrill@…>, on 07/31/97 at 22:13:29

Merged very large and much appreciated patch from Chris Johns
<cjohns@…>. This patch includes the ods68302 bsp,
the RTEMS++ class library, and the rtems++ test.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH=@srcdir@
9
10PGM=${ARCH}/start302.o
11
12ifeq ($(RTEMS_DEBUGGER),yes)
13RESET_SRC = debugreset
14else
15RESET_SRC = reset
16CFLAGS += -DGDB_MONITOR_ACTIVE
17endif
18
19# C source names, if any, go here -- minus the .c
20C_PIECES=cpuboot
21C_FILES=$(C_PIECES:%=%.c)
22C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
23
24H_FILES=
25
26# Assembly source names, if any, go here -- minus the .s
27S_PIECES=$(RESET_SRC)
28S_FILES=$(S_PIECES:%=%.s)
29S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
30
31SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
32OBJS=$(S_O_FILES) $(C_O_FILES)
33
34include $(RTEMS_CUSTOM)
35include $(PROJECT_ROOT)/make/leaf.cfg
36
37#
38# (OPTIONAL) Add local stuff here using +=
39#
40
41DEFINES  +=
42CPPFLAGS +=
43CFLAGS   +=
44
45LD_PATHS  +=
46LD_LIBS   +=
47LDFLAGS   +=
48
49#
50# Add your list of files to delete here.  The config files
51#  already know how to delete some stuff, so you may want
52#  to just run 'make clean' first to see what gets missed.
53#  'make clobber' already includes 'make clean'
54#
55
56CLEAN_ADDITIONS +=
57CLOBBER_ADDITIONS +=
58
59${PGM}: ${OBJS}
60        $(make-rel)
61       
62all:    ${ARCH} $(SRCS) $(OBJS) $(PGM)
63        $(INSTALL_VARIANT) -m 555 ${PGM} ${PROJECT_RELEASE}/lib
64
65# Install the program(s), appending _g or _p as appropriate.
66# for include files, just use $(INSTALL)
67
68
Note: See TracBrowser for help on using the repository browser.