CFLAGS = +L -S +Iinclude.dmp
LFLAGS = +Cd

OBJS = main.o data.o image.o

.c.o:
	cc $(CFLAGS) $*.c

OSK : $(OBJS)
	ln $(LFLAGS) -O OSK $(OBJS) -Lc32
