# Makefile for libvcs version 1.0

CFLAGS=-pipe -O2 -m386 -fomit-frame-pointer -fstrength-reduce -funroll-loops -fno-expensive-optimizations -frerun-cse-after-loop -s -Wall
CC=gcc
OBJS=vcs.o ansi-interpreter.o

all: static

static: $(OBJS)
	ar rcs libvcs.a ${OBJS}
	ranlib libvcs.a

clean:
	rm -f libvcs.a *.o core
