source: rtems/c/src/lib/libbsp/i386/pc386/tools/Makefile.in @ 0c508af

4.104.114.84.95
Last change on this file since 0c508af was fc56b90c, checked in by Joel Sherrill <joel.sherrill@…>, on 02/11/98 at 21:57:20

Don't install tools using variant name.

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