include ../common.mak

lib = libccw.a

all: $(lib)

objects = ccw.o

$(lib): $(objects)

install: all

clean:
	rm -f *.o $(lib)
