scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

i386.mk (269B)


      1 I386_OBJ =\
      2 	$(OBJS)\
      3 	target/x86/i386tbl.o\
      4 	target/x86/i386.o\
      5 	target/x86/ins.o\
      6 
      7 target/x86/i386tbl.c: target/x86/ops.dat target/x86/opers.dat lexh
      8 	./mktbl -f x86 -c i386
      9 
     10 $(LIBEXEC)/scc/as-i386: $(I386_OBJ)
     11 	$(CC) $(PROJ_LDFLAGS) $(I386_OBJ) $(PROJ_LDLIBS) -o $@