makefile 293 B

1234567891011121314
  1. all:
  2. @echo "You must use 'make windows' or 'make unix'."
  3. @echo "'make unix' is broken for now."
  4. windows: make-list
  5. $(CSC) /target:library /out:System.XML.dll /nowarn:1595 @list
  6. unix:
  7. @echo "'make unix' is broken for now."
  8. make-list:
  9. cat common.src windows.src > list
  10. test: $(PLATFORM)