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

CC_TARGET_01=-Zwin32 
CFLAGS_TARGET_01=-O2 -Wall 

speed.exe: speed.o
	gcc $(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)

