#
# This makefile is created by rsxide
#

.SUFFIXES: .exe .res .a .o .c .cpp .cc .cxx .m .rc .p .f .F .r .y .l .s .S .def .h

all: try2.exe try1.exe

CC_TARGET_01=-Zwin32 
CFLAGS_TARGET_01=-O2 -Wall 

try2.exe: try2.o
	gcc $(CC_TARGET_01) -s  -o try2.exe try2.o -lexcpt 

try2.o: try2.c
	gcc -c -o try2.o try2.c $(CC_TARGET_01)  $(CFLAGS_TARGET_01)

CC_TARGET_02=-Zwin32 
CFLAGS_TARGET_02=-O2 -Wall 

try1.exe: try1.o
	gcc $(CC_TARGET_02) -s  -o try1.exe try1.o -lexcpt 

try1.o: try1.c
	gcc -c -o try1.o try1.c $(CC_TARGET_02)  $(CFLAGS_TARGET_02)

