Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
# SPDX-License-Identifier: GPL-2.0
export srctree := $(abspath ../../../..)
export CC      := gcc
export LD      := ld
export AR      := ar

ex:

include $(srctree)/tools/build/Makefile.include

ex: __KEEPMAKEFILEO__B.o __KEEPMAKEFILEO__C.o
	$(CC) -o $@ $^

ex.%: fixdep FORCE
	make -f $(srctree)/tools/build/Makefile.build dir=. $@

ex-in.o: fixdep FORCE
	make $(build)=ex

libex-in.o: fixdep FORCE
	make $(build)=libex

clean:
	find . -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete
	rm -f ex ex.i ex.s

.PHONY: FORCE