summaryrefslogtreecommitdiffstats
path: root/c/src/support/Makefile.am
blob: b7fa07117cdd2424c7efef4dc16eaacd8970e33d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
##
## $Id$
##

include $(top_srcdir)/automake/compile.am
include $(top_srcdir)/automake/lib.am

AM_CPPFLAGS += -DRTEMS_BSP=\"$(RTEMS_BSP)\"

C_FILES=version.c
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))

LIB = $(ARCH)/libsupport.a

$(LIB): $(OBJS)
	$(make-library)

all-local: $(ARCH) $(LIB)

include $(top_srcdir)/automake/local.am