include ../../Makeincl

LIBS      = -lm
CFLAGS    = 

CSOURCE   = map-eve.c map-socbot.c
PCSOURCE  = PC_Quantify_data.c


all:	$(basename $(PCSOURCE)) $(addsuffix .hex,$(basename $(CSOURCE)))

clean:
	-$(RM) $(basename $(PCSOURCE)) $(addsuffix .hex,$(basename $(CSOURCE))) core

%.hex:	%.c
	$(CC68) $(CFLAGS) -o $@ $< $(LIBS)

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