Makefile 207 B

123456789101112131415161718
  1. # Makefile for obcpl/util
  2. BC=obcpl
  3. BFLAGS=-O
  4. all: hello factorial
  5. hello: hello.b
  6. $(BC) $(BFLAGS) hello.b
  7. factorial: factorial.b
  8. $(BC) $(BFLAGS) factorial.b
  9. install:
  10. clean:
  11. rm -f hello factorial *.o