Makefile 462 B

12345678910111213141516171819202122
  1. #
  2. # Minimalist version of a makefile, so make clean at least works.
  3. #
  4. # Warning: this file contains TAB (#9) characters that are required for
  5. # make. Make sure you use an editor that does not replace TABs with
  6. # spaces, or the makefile won't work anymore after you save.
  7. .PHONY: all clean install
  8. all:
  9. -make -C go32v2 all
  10. -make -C go32v1 all
  11. clean:
  12. -make -C go32v2 clean
  13. -make -C go32v1 clean
  14. install:
  15. -make -C go32v2 install
  16. -make -C go32v1 install