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

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

CC=gcc.exe
LD=gcc.exe
AR=ar.exe
RC=rc.exe
RSRC=rsrc.exe
IMP=makelib.exe
WIN32_FLAG=-Zwin32
RSX32_FLAG=-Zrsx32
DLL_FLAG=-Zdll
CRT_FLAG=-Zcrtdll=crtrsxnt
NRT_FLAG=-Zno-rte
SYS_FLAG=-Zsys
SO_FLAG=-Zso
STRIP_FLAG=-s
MT_FLAG=-Zmt


all: sol.exe

CC_TARGET_01=$(WIN32_FLAG) $(MT_FLAG) 
CFLAGS_TARGET_01=-O2 -Wall -m486 

sol.exe: sol.o sol.res
	$(LD) $(CC_TARGET_01) -s  -o sol.exe sol.o
	$(RSRC) sol.res sol.exe

sol.o: sol.c
	$(CC) -c -o sol.o sol.c $(CC_TARGET_01)  $(CFLAGS_TARGET_01)

sol.res: sol.rc
	$(RC) -fosol.res sol.rc

