summaryrefslogtreecommitdiffstats
path: root/driver/aim-sound/Makefile
blob: 5c07108460bfaaf262e68e74931e67f66a616dda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Makefile
#

SRC := $(shell pwd)

obj-m += aim_sound.o
aim_sound-y := sound.o
CFLAGS_sound.o := -I$(src)/../include/

all:
	$(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules

modules_install:
	$(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install

clean:
	$(MAKE) -C $(KERNEL_SRC) M=$(SRC) clean