shithub: scc

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