summaryrefslogtreecommitdiff
path: root/wctc4xxp/Makefile
blob: 6840157cdbb0fabce0f007758cfb337e971fa147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
ifneq ($(KBUILD_EXTMOD),)
# We only get here on kernels 2.6.0-2.6.8 .
# For newer kernels, Kbuild will be included directly by the kernel
# build system.
include $(obj)/Kbuild

else

tests: codec_test

codec_test: codec_test.c ../zaptel.h
	$(CC) -o $@ $< $(CFLAGS)

clean:
	rm -rf codec_test
endif