###########################
##   makefile standard   ##
###########################

CC = wcc386
ASM = ml

# options
CFLAGS = -mf -zq -d2 -w3 -4s -j
AFLAGS = /c /Zf /Gd /Cp

# Linker_options   = 
LFLAGS = sys dos4g op c d a

OBJVERIF = enterkey.obj scancode.obj scan.obj

OBJ = enterkey,scancode,scan



####################
## Makefile rules ##
####################

enterkey.exe : $(OBJVERIF)
	*wlink $(LFLAGS) n enterkey f $(OBJ)

.c.obj:
	$(CC) $(CFLAGS) $<

.asm.obj :
	$(ASM) $(AFLAGS) $<


