source: rtems/c/src/lib/libbsp/m68k/mvme136/clock/Makefile.in @ 254b4450

4.104.114.84.95
Last change on this file since 254b4450 was 254b4450, checked in by Joel Sherrill <joel.sherrill@…>, on 04/01/97 at 23:07:52

This set of changes is the build of what was required to convert to
GNU autoconf. This is the first large step in allowing an RTEMS
user to perform a one-tree build (per crossgcc FAQ) including RTEMS
in the build process. With this change RTEMS is configured in
built in the same style as the GNU tools, yet retains the basic
structure of its traditional Makefiles (ala Tony Bennett).
Jiri Gaisler (jgais@…) deserves (and received)
a big thank you for doing this.

There are still issues to be resolved but as of this commit, all target
which can be built on a linux host have been using a modified version
of the source Jiri submitted. This source was merged and most targets
built in the tree before this commit.

There are some issues which remain to be resolved but they are primarily
related to host OS dependencies, script issues, the use of gawk
for hack_specs, and the dependence on gcc snapshots. These will
be resolved.

  • Property mode set to 100644
File size: 907 bytes
RevLine 
[254b4450]1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH=@srcdir@
9
10PGM=${ARCH}/clock.rel
11
12# C source names, if any, go here -- minus the .c
13C_PIECES=ckinit
14C_FILES=$(C_PIECES:%=%.c)
15C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
16
17H_FILES=
18
19SRCS=$(C_FILES) $(H_FILES)
20OBJS=$(C_O_FILES)
21
22include $(RTEMS_CUSTOM)
23include $(PROJECT_ROOT)/make/leaf.cfg
24
25
26#
27# (OPTIONAL) Add local stuff here using +=
28#
29
30DEFINES  +=
31CPPFLAGS +=
32CFLAGS   +=
33
34LD_PATHS  +=
35LD_LIBS   +=
36LDFLAGS   +=
37
38#
39# Add your list of files to delete here.  The config files
40#  already know how to delete some stuff, so you may want
41#  to just run 'make clean' first to see what gets missed.
42#  'make clobber' already includes 'make clean'
43#
44
45CLEAN_ADDITIONS +=
46CLOBBER_ADDITIONS +=
47
48${PGM}: ${SRCS} ${OBJS}
49        $(make-rel)
50
51all:    ${ARCH} $(SRCS) $(PGM)
52
53# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
54install:  all
Note: See TracBrowser for help on using the repository browser.