#
#  Makefile AceCad USB tablet
#

# The target object and module list name.

O_TARGET	:= acecad.o

# Objects that export symbols.

export-objs	:= $(O_TARGET)

# Object file lists.

obj-y	:=
obj-m	:=
obj-n	:=
obj-	:=

# Each configuration option enables a list of files.

obj-$(CONFIG_ACECAD)		+= $(O_TARGET)

# The global Rules.make.

include $(TOPDIR)/Rules.make


