include ../config.mk

CFLAGS+=$(DEFS) $(INCLUDE)

all: libantiright.a

objects=pipe.o string.o system.o util.o tuple.o arguments.o gui.o

libantiright.a: ${objects}
	ar rcs libantiright.a ${objects}
clean:
	rm -f *.o *.a

