source: rtems/c/src/exec/wrapup/posix/Makefile.in @ cb5bfe4

4.104.114.84.95
Last change on this file since cb5bfe4 was cb5bfe4, checked in by Joel Sherrill <joel.sherrill@…>, on 01/20/98 at 19:41:09

Removed CONFIG_DIR and PROJECT_HOME directories.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH = @srcdir@
9RTEMS_ROOT = @RTEMS_ROOT@
10PROJECT_ROOT = @PROJECT_ROOT@
11RTEMS_CUSTOM = $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
12
13#
14#  This is really temporary until posix is more an integral part of the tree.
15#
16#CPU_OBJS=$(wildcard ../../score/cpu/$(RTEMS_CPU)/$(ARCH)/*.rel)
17#CORE_OBJS=$(wildcard ../../score/src/$(ARCH)/*.o)
18#SAPI_OBJS=$(wildcard ../../sapi/src/$(ARCH)/*.o)
19POSIX_OBJS=$(wildcard ../../posix/src/$(ARCH)/*.o)
20
21OBJS=$(CPU_OBJS) $(CORE_OBJS) $(POSIX_OBJS) $(SAPI_OBJS)
22LIB=$(ARCH)/libposix.a
23
24include $(RTEMS_CUSTOM)
25include $(RTEMS_ROOT)/make/lib.cfg
26
27#
28# (OPTIONAL) Add local stuff here using +=
29#
30
31DEFINES  +=
32CPPFLAGS +=
33CFLAGS   +=
34
35LD_PATHS  +=
36LD_LIBS   +=
37LDFLAGS   +=
38
39#
40# Add your list of files to delete here.  The config files
41#  already know how to delete some stuff, so you may want
42#  to just run 'make clean' first to see what gets missed.
43#  'make clobber' already includes 'make clean'
44#
45
46CLEAN_ADDITIONS +=
47CLOBBER_ADDITIONS +=
48
49$(LIB): ${OBJS}
50        $(make-library)
51
52all:    ${ARCH} $(SRCS) $(LIB)
53        $(INSTALL_VARIANT) -m 644 $(LIB) ${PROJECT_RELEASE}/lib
54
Note: See TracBrowser for help on using the repository browser.