TARGET=common.a

OBJECTS=\
	crc32.o \
	event.o \
	thread.o

all: $(TARGET)

$(TARGET): $(OBJECTS)
	ar r $@ $^


clean:
	-rm $(TARGET)
	-rm *.o

