#=============================================================================
#
#             --- CAEN SpA - Computing Systems Division ---
#
#  Makefile
#
#
#  February  2002 :   Created.
#
#=============================================================================

INCLUDE = /usr/src/linux/include/

COPTS   = -O2 -Wall -W -Wpointer-arith -Wcast-qual \
          -Wstrict-prototypes -Wmissing-prototypes \
          -Wmissing-declarations -Winline -Wcast-align

# Link-time flags to use
LDFLAGS= 
# Additional link libraries
LIBS= 

a1303.o: a1303.c a1303.h    
	gcc -I${INCLUDE} -D__KERNEL__ -O -c a1303.c
  
all:	a1303.o

clean:
	rm -f *.o core
