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

CC_TARGET_01=-Zwin32 
CFLAGS_TARGET_01=-O2 -Wall 

rsxwbind.exe: rsxwbind.o rsxwbind.res
	gcc $(CC_TARGET_01) -s  -o rsxwbind.exe rsxwbind.o -lcomdlg32
	rsrc rsxwbind.res rsxwbind.exe

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

rsxwbind.res: rsxwbind.rc
	grc -r rsxwbind.rc

