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

CC_TARGET_01=-Zwin32 
CFLAGS_TARGET_01=-O2 -Wall 

whello.exe: whello.o
	gcc $(CC_TARGET_01) -s  -o whello.exe whello.o

whello.o: whello.cpp
	gcc -c -o whello.o whello.cpp $(CC_TARGET_01)  $(CFLAGS_TARGET_01)

