ref: 09ae5802d52b84b988e9a997f76119e24f68d37d
dir: /cc1/Makefile/
.POSIX: # Makefile is only used as a template for makefile. # If you modify Makefile remember to run make dep LIBDIR = ../lib/scc include ../config.mk include $(LIBDIR)/libdep.mk MOREFLAGS = -I../inc/$(STD) $(CC1_CFLAGS) OBJ = types.o decl.o lex.o error.o symbol.o main.o expr.o \ code.o stmt.o cpp.o fold.o init.o builtin.o HDR = cc1.h ../inc/scc.h ../inc/$(STD)/cstd.h ../inc/sysincludes.h all: mkdir -p ../rootdir/libexec/scc/ cp cc1-* ../rootdir/libexec/scc/ $(LIBDIR)/libscc.a: $(LIB-OBJ) cd $(LIBDIR) && $(MAKE) dep: ../config.mk Makefile ./gendep.sh $(TARGETS) touch dep clean: rm -f *.o rm -f target/*/*.o rm -f cc1-* distclean: clean rm -f makefile rm -f dep