shithub: scc

ref: 022532e3e74a94ff9a194378c5a9f7a4904d82d3
dir: /lib/Makefile/

View raw version
# See LICENSE file for copyright and license details.
.POSIX:
include ../config.mk

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

all: libcc.a


libcc.a: $(OBJS)
	ar $(ARFLAGS) $@ $?
	ranlib $@

clean:
	rm -f *.o *.a