shithub: scc

ref: 63e58ec2d143083afa060d26ac15a125ffe88609
dir: /lib/c/common.mk/

View raw version
SRC=$(OBJ:.o=.c)

all: libc.a

libc.a: $(OBJ)
	$(AR) $(ARFLAGS) $@ $?
	ranlib $@

dep:
	../gendep.sh

clean:
	rm -f $(OBJ)

distclean: clean
	rm -f $(SRC)
	rm -f makefile