shithub: scc

ref: 7bc77eb2a55559b64e2100e603490fc6bcc76aac
dir: /lib/Makefile/

View raw version
# See LICENSE file for copyright and license details.
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 $@ $?
	ranlib $@

clean:
	rm -f *.o *.a