Makefile 441 B

12345678910111213141516171819202122
  1. all: bindir join move goto position position_stream see
  2. bindir: bin
  3. mkdir -p bin
  4. join: join.c help/util.h
  5. gcc join.c -o bin/join
  6. move: move.c help/util.h
  7. gcc move.c -o bin/move
  8. goto: goto.c help/util.h
  9. gcc goto.c -o bin/goto
  10. position: position.c help/query.h
  11. gcc position.c -o bin/position
  12. position_stream: position_stream.c help/query.h
  13. gcc position_stream.c -o bin/position_stream
  14. see: see.c help/query.h
  15. gcc see.c -o bin/see