CC = zcc
CFLAGS = +cpm -lndos -O3

all: mazezam.com

%.com : %.c 
	$(CC) $(CFLAGS) -o $@ $<

clean:
	$(RM) *~ mazezam.com zcc_opt.def

