-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathGNUmakefile.am
More file actions
25 lines (18 loc) · 820 Bytes
/
GNUmakefile.am
File metadata and controls
25 lines (18 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
OPTDIRS =
if CONFIG_RTNET_EXAMPLES
OPTDIRS += examples
endif
SUBDIRS = stack drivers addons $(OPTDIRS) tools Documentation scripts
EXTRA_DIST = makefile Kconfig defconfig config/modules/Makefile
reconfig xconfig gconfig mconfig menuconfig config oldconfig help:
@$(MAKE) -f $(srcdir)/makefile $@ \
srctree=$(srcdir) ARCH=@RTNET_HOST_STRING@ CROSS_COMPILE=@CROSS_COMPILE@
install-data-local:
rm -f $(DESTDIR)$(prefix)/build
$(LN_S) @abs_top_builddir@ $(DESTDIR)$(prefix)/build
rm -f $(DESTDIR)$(prefix)/source
$(LN_S) @abs_srcdir@ $(DESTDIR)$(prefix)/source
rm -f $(DESTDIR)$(prefix)/symbols
$(LN_S) @abs_top_builddir@/symbols $(DESTDIR)$(prefix)/symbols
DISTCLEANFILES = Modules.symvers Module.symvers Module.markers modules.order
.PHONY: reconfig xconfig gconfig mconfig menuconfig config oldconfig help