include ../config.mk

CFLAGS=$(DEFS)

all: pipe.o string.o system.o util.o
	ar rcs libantiright.a pipe.o string.o system.o util.o
clean:
	rm -f *.o *.a

