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

CC_TARGET_01=-Zwin32 
CFLAGS_TARGET_01=-O2 -Wall 

test.exe: test.o
	gcc $(CC_TARGET_01) -s  -o test.exe test.o -lrsxioapp

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

