source: rtems/c/build-tools/src/Makefile.in @ 9eef52b

4.104.114.84.95
Last change on this file since 9eef52b was e496c1f, checked in by Joel Sherrill <joel.sherrill@…>, on 02/07/98 at 19:43:38

Should not install build-tools using target variant options.

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[254b4450]1#
2# $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7exec_prefix = @exec_prefix@
8bindir = @bindir@
9libdir = @libdir@
10includedir = @includedir@
11manext = 1
12mandir = @mandir@/man$(manext)
13
[674c900]14VPATH = @srcdir@
[5c3511e]15RTEMS_ROOT = @top_srcdir@
[674c900]16PROJECT_ROOT = @PROJECT_ROOT@
[254b4450]17
18# we use host compiler in this directory
19USE_HOST_COMPILER=yes
20
21# C source names, if any, go here -- minus the .c
22C_PIECES=cklength eolstrip packhex unhex
23C_FILES=$(C_PIECES:%=%.c)
24C_O_FILES=$(C_PIECES:%=$(ARCH)/%.o)
25
26H_FILES=
27
28SRCS=$(C_FILES) $(CC_FILES) $(H_FILES)
29OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
30
31PGMS=$(ARCH)/cklength $(ARCH)/eolstrip $(ARCH)/packhex $(ARCH)/unhex
32
[5c3511e]33include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
[254b4450]34include $(RTEMS_ROOT)/make/leaf.cfg
35
36#
37# (OPTIONAL) Add local stuff here using +=
38#
39
40DEFINES  +=
[9ad1f13]41CPPFLAGS += -I.
[254b4450]42CFLAGS   +=
43
44LD_PATHS  +=
45LD_LIBS   +=
46LDFLAGS   +=
47
48#
49# Add your list of files to delete here.  The config files
50#  already know how to delete some stuff, so you may want
51#  to just run 'make clean' first to see what gets missed.
52#  'make clobber' already includes 'make clean'
53#
54
55CLEAN_ADDITIONS += $(HOST_ARCH)
56CLOBBER_ADDITIONS +=
57
58all:    $(ARCH) $(SRCS) $(PGMS)
[e496c1f]59        $(INSTALL) -m 555 $(PGMS) ${PROJECT_RELEASE}/build-tools
Note: See TracBrowser for help on using the repository browser.