shithub: scc

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