shithub: scc

ref: 245fc40cffc3b201f5cdf9e1b485fc7fa06e1463
dir: /lib/Makefile/

View raw version
include ../config.mk

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

all: libcc.a

.POSIX:

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

clean:
	rm -f *.o *.a