makefile 389 B

1234567891011121314151617
  1. DIRS= \
  2. System.Web \
  3. System.Web.Caching
  4. all:
  5. @echo "You must use 'make windows' or 'make unix'."
  6. @echo "'make unix' is broken for now."
  7. windows: make-list
  8. $(CSC) /target:library /out:System.Web.dll /nowarn:1595 @list
  9. unix:
  10. @echo "'make unix' is broken for now."
  11. make-list:
  12. for i in $(DIRS); do \
  13. cat $$i/common.src $$i/windows.src | sed "s/^/$$i\\\\/"; \
  14. done > list