shithub: scc

ref: b54555847db093e24321a8d628e9a2f0f3fdb888
dir: /lib/Makefile/

View raw version
include ../config.mk

OBJS = die.o xcalloc.o xmalloc.o xrealloc.o xstrdup.o

all: libcc.a

.POSIX:

libcc.a: $(OBJS)
	ar r $@ $?

clean:
	rm -f *.o *.a