harec

[hare] Hare compiler, written in C11 for POSIX OSs
Log | Files | Refs | README | LICENSE

Makefile (378B)


      1 testmod_srcs+=\
      2 	testmod/testmod.ha
      3 
      4 testmod.a: harec $(testmod_srcs)
      5 	@printf 'HAREC\t$@\n'
      6 	@mkdir -p $(HARECACHE)/testmod
      7 	@./harec -Ntestmod  -t$(HARECACHE)/testmod/testmod.td -o $@.ssa $(testmod_srcs)
      8 	@$(QBE) -o $@.s $@.ssa
      9 	@$(AS) -g -o $@.o $@.s
     10 	@$(AR) -csr $@ $@.o $(testmod_objs)
     11 	@rm $@.o $@.s $@.ssa
     12 
     13 clean-testmod:
     14 	@rm -f testmod.a
     15 
     16 .PHONY: testmod clean-testmod