OBJS = creat.obj sigcompa.obj

.PHONY: clean
all: $(OBJS)
	glib ../libc.lib $(addprefix -a , $(OBJS))
	touch all
clean:
	-rm -f *.obj all
