CFLAGS = nostackcheck structureequivalence saveds

all: AppIcon AppMenu AppWindow

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

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

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

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