#
# 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: try1.exe

CC_TARGET_01=-Zwin32 
CFLAGS_TARGET_01=-O2 -Wall 

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

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

