cs205-lecture-examples

Example codes used during Harvard CS205 lectures
git clone https://git.0xfab.ch/cs205-lecture-examples.git
Log | Files | Refs | README | LICENSE

Makefile (147B)


      1 .PHONY: clean
      2 
      3 # linker
      4 registers: registers.o
      5 	ld -o $@ $<
      6 
      7 # assembly
      8 registers.o: registers.s
      9 	as -o $@ $<
     10 
     11 clean:
     12 	rm -f registers registers.o