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

4.104.114.84.95
Last change on this file since 352c9b2 was 352c9b2, checked in by Joel Sherrill <joel.sherrill@…>, on 11/09/99 at 22:07:23

This patch adds the basic framework for the ITRON 3.0 API implementation
for RTEMS.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = ../..
9subdir = wrapup/posix
10
11RTEMS_ROOT = @RTEMS_ROOT@
12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@
15
16POSIX_OBJS = $(wildcard ../../posix/src/$(ARCH)/*.o)
17
18OBJS = $(CPU_OBJS) $(CORE_OBJS) $(POSIX_OBJS) $(SAPI_OBJS)
19# HACK: AM_CONDITIONAL
20LIB = @HAS_POSIX_TRUE@$(ARCH)/libposix.a
21
22include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
23include $(RTEMS_ROOT)/make/lib.cfg
24
25INSTALL_CHANGE = @INSTALL_CHANGE@
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
52# HACK: AM_CONDITIONAL
53all: @HAS_POSIX_TRUE@${ARCH} $(SRCS) $(LIB)
54@HAS_POSIX_TRUE@        @$(INSTALL_VARIANT) -m 644 $(LIB) $(PROJECT_RELEASE)/lib
55
56Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
57        cd $(top_builddir) \
58         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.