#
# 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
LD=gcc


all: ansi.exe

CC_TARGET_01=-Zwin32 
CFLAGS_TARGET_01=-O2 -Wall 

ansi.exe: ansi.o
	$(CC) $(CC_TARGET_01) -s  -o ansi.exe ansi.o
	rsxntopt -b ansi.exe -V

ansi.o: ansi.c
	$(CC) -c -o ansi.o ansi.c $(CC_TARGET_01) 

