include ../config.make

LIBS = libcbm.a
OBJS = cbm.o upload.o

all: $(LIBS)

clean:
	rm -f $(LIBS) $(OBJS)

install:

.c.o:
	$(CC) $(CFLAGS) -c $< -o $@

libcbm.a: $(OBJS)
	$(AR) r $@ $(OBJS)
