# change that if you want to cross-compile 
#CC=mipsel-linux-gcc

####################################################################
# relative path of the addidata include directory
# IF YOU ARE BUILDING THIS DRIVER OUTSIDE THE KERNEL SOURCE
# PLEASE ADAPT THIS VARIABLE TO YOUR LOCAL INSTALLATION 
ifeq ($(ADDIDATAINC),)
ADDIDATAINC:=/usr/src/linux/include/linux/addidata/
endif
####################################################################

OBJS:=testapci3001


all: $(OBJS)

clean:
	-rm $(OBJS)

# Compile the sample apps

testapci3001: testapci3001.c
	$(CC) -Wall -I$(ADDIDATAINC) $< -o $@
