shithub: scc

ref: da3fdf4fee4a266d3e69ea569659cb0268cb7d28
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