#
# This makefile is created by rsxide (release 6/99)
#

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

CC=gcc
LD=gcc


all: speed.exe

CC_TARGET_01=-Zwin32 
CFLAGS_TARGET_01=-O2 -Wall 

speed.exe: speed.o
	$(CC) $(CC_TARGET_01) -s  -o speed.exe speed.o

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

