source: rtems/c/src/exec/score/tools/unix/Makefile.in @ 68732ef3

4.104.114.84.95
Last change on this file since 68732ef3 was 68732ef3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/30/97 at 18:35:22

Corrected comment.

  • Property mode set to 100644
File size: 984 bytes
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH=@srcdir@
9
10# we use host compiler here for gensize.  Hopefully it has same alignment!!
11USE_HOST_COMPILER=yes
12
13# C source names, if any, go here -- minus the .c
14C_PIECES=gensize
15C_FILES=$(C_PIECES:%=%.c)
16C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
17
18H_FILES=
19
20SRCS=$(C_FILES) $(H_FILES)
21OBJS=$(C_O_FILES)
22
23PGMS=${ARCH}/gensize
24
25include $(RTEMS_CUSTOM)
26include $(PROJECT_ROOT)/make/leaf.cfg
27
28# We use files that have not been installed yet.
29CPU_DIR=../../cpu/$(RTEMS_CPU)
30
31#
32# (OPTIONAL) Add local stuff here using +=
33#
34
35DEFINES  +=
36CPPFLAGS += -I$(PROJECT_INCLUDE) \
37            -I$(CPU_DIR)
38CFLAGS   +=
39
40LD_PATHS  +=
41LD_LIBS   +=
42LDFLAGS   +=
43
44#
45# Add your list of files to delete here.
46#
47
48CLEAN_ADDITIONS +=
49CLOBBER_ADDITIONS +=
50
51all:    ${ARCH} $(SRCS) $(PGMS)
52        $(INSTALL) -m 555 ${PGMS} ${PROJECT_RELEASE}/bin
53
54preinstall:
55
56# Install the program(s), appending _g or _p as appropriate.
57# for include files, just use $(INSTALL)
Note: See TracBrowser for help on using the repository browser.