forked from Imagelibrary/rtems
27 lines
496 B
Makefile
27 lines
496 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
@SET_MAKE@
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
VPATH=@srcdir@
|
|
|
|
H_PIECES=console clockdrv iosupp ringbuf \
|
|
spurious timerdrv vmeintr z8036 z8530 z8536
|
|
H_FILES=$(H_PIECES:%=$(srcdir)/%.h)
|
|
|
|
SYS_H_FILES=
|
|
|
|
SRCS=$(H_FILES) $(SYS_H_FILES)
|
|
|
|
include $(RTEMS_CUSTOM)
|
|
include $(PROJECT_ROOT)/make/leaf.cfg
|
|
|
|
CLEAN_ADDITIONS +=
|
|
CLOBBER_ADDITIONS +=
|
|
|
|
all: $(SRCS)
|
|
$(INSTALL) -m 444 $(H_FILES) ${PROJECT_RELEASE}/include
|
|
$(INSTALL) -m 444 $(SYS_H_FILES) ${PROJECT_RELEASE}/include/sys
|