.SUFFIXES : .x .o .c

CC=gcc -O2 -s
LD=gcc -Xlinker -O2 -s
RM=del

all: string92.o macro.o runc.o
	@-echo "Link..."
	$(LD) -o runc.exe macro.o string92.o runc.o

clean:
	$(RM) *.o

.c.o: 
	@-echo "Making component -> $*.o"
	$(CC) -g -c $< -o $*.o 

# dependencies -- DO NOT DELETE BELOW THIS LINE -- make depends on it.

string92.o : string92.c string92.h
macro.o	   : macro.c
runc.o     : runc.c 
