ref: cd137ca7a0463d165f29279b89e463c17553b32d
dir: /as/Makefile/
.POSIX: LIBDIR = ../lib/scc include ../config.mk include $(LIBDIR)/libdep.mk OBJ = main.o emit.o HDR = ../inc/scc.h as.h all: $(OBJ): $(HDR) as: $(OBJ) $(CC) $(SCC_LDFLAGS) $(OBJ) -lscc -o $@ $(LIBDIR)/libscc.a: cd $(LIBDIR) && $(MAKE) dep: ./gendep.sh $(TARGETS) clean: rm -f *.o rm -f target/*/*.o rm -f target/*/instbl.c rm -f as-* distclean: clean rm -f makefile