Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit adb19fb6 authored by Peter Foley's avatar Peter Foley Committed by Jiri Kosina
Browse files

Documentation: add makefiles for more targets



Add a bunch of previously unbuilt source files to the Documentation build
machinery.

Signed-off-by: default avatarPeter Foley <pefoley2@pefoley.com>
Signed-off-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent df68a010
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
subdir-y := DocBook accounting auxdisplay connector \
	filesystems filesystems ia64 laptops networking \
	pcmcia spi timers watchdog misc-devices
subdir-y := accounting arm auxdisplay blackfin connector \
	filesystems filesystems ia64 laptops mic misc-devices \
	networking pcmcia prctl ptp spi timers vDSO video4linux \
	watchdog
+1 −0
Original line number Diff line number Diff line
subdir-y := SH-Mobile
+5 −6
Original line number Diff line number Diff line
BIN := vrl4
# List of programs to build
hostprogs-y := vrl4

.PHONY: all
all: $(BIN)
# Tell kbuild to always build the programs
always := $(hostprogs-y)

.PHONY: clean
clean:
	rm -f *.o $(BIN)
HOSTCFLAGS_vrl4.o += -I$(objtree)/usr/include
+2 −5
Original line number Diff line number Diff line
ifneq ($(CONFIG_BLACKFIN),)
obj-m := gptimers-example.o

all: modules

modules clean:
	$(MAKE) -C ../.. SUBDIRS=$(PWD) $@
endif
+2 −0
Original line number Diff line number Diff line
subdir-y := configfs

# List of programs to build
hostprogs-y := dnotify_test

Loading