source: rtems/c/src/Makefile.am @ 65f868c

5
Last change on this file since 65f868c was 9edb72e, checked in by Sebastian Huber <sebastian.huber@…>, on 04/05/18 at 04:56:26

build: Remove DISTCLEANFILES

A "make distclean" is not supported. So, it makes no sense to have pure
"make distclean" related stuff in the Makefile.am.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1ACLOCAL_AMFLAGS = -I aclocal
2
3_SUBDIRS = . @BSP_SUBDIRS@
4DIST_SUBDIRS = @BSP_SUBDIRS@
5
6$(PROJECT_LIB)/$(dirstamp):
7        @echo "Making project library directory: $(PROJECT_LIB)"
8        @$(MKDIR_P) $(PROJECT_LIB)
9        @: > $(PROJECT_LIB)/$(dirstamp)
10
11all-local: $(PROJECT_LIB)/$(dirstamp)
12
13clean-local:
14        $(RM) -r $(PROJECT_RELEASE)
15
16make/@RTEMS_BSP@.cache: make/bsp.mak @CUSTOM_CFG_FILES@
17        $(RM) make/@RTEMS_BSP@.cache
18        $(MAKE) -f ${srcdir}/make/bsp.mak \
19        'RTEMS_BSP=@RTEMS_BSP@' 'RTEMS_ROOT=.' \
20        make/@RTEMS_BSP@.cache
21
22noinst_DATA = make/@RTEMS_BSP@.cache
23
24rtems_makedir = $(prefix)/make
25rtems_make_customdir = $(rtems_makedir)/custom
26rtems_make_custom_DATA = @CUSTOM_CFG_FILES@
27
28noinst_DATA += make/custom/default.cfg
29
30@host_alias@-@RTEMS_BSP@.pc: config.status bsp.pc.in
31        ./config.status --file=$@:$(srcdir)/bsp.pc.in
32
33pkgconfigdir = $(prefix)/lib/pkgconfig
34pkgconfig_DATA = @host_alias@-@RTEMS_BSP@.pc
35
36include $(DEPDIR)/cfg.P
37
38include $(top_srcdir)/automake/subdirs.am
39include $(top_srcdir)/automake/local.am
40include $(srcdir)/../../bsps/headers.am
Note: See TracBrowser for help on using the repository browser.