CFLAGS = nostackcheck structureequivalence ignore=73

all: Keyboard_Events Read_Keyboard_Matrix Key_Reset

Keyboard_Events: Keyboard_Events.c
	sc link $(CFLAGS) $@

Read_Keyboard_Matrix: Read_Keyboard_Matrix.c
	sc link $(CFLAGS) $@

Key_Reset: Key_Reset.c Keyhandler.a
	sc link $(CFLAGS) Key_Reset.c Keyhandler.a

clean:
	-delete \#?.(o|lnk)
