| 1234567891011121314151617181920212223242526272829303132333435 |
- DIRS=\
- System \
- System.CodeDom \
- System.CodeDom.Compiler \
- System.ComponentModel \
- System.Configuration \
- System.Diagnostics \
- System.Net \
- System.Net.Sockets \
- System.Collections.Specialized \
- System.Threading
- all:
- @echo "You must use 'make windows' or 'make unix'."
- @echo "'make unix' is broken for now."
- windows: make-list
- $(CSC) /target:library /out:System.dll /nowarn:1595 @list
- unix:
- @echo "'make unix' is broken for now."
- make-list:
- for i in $(DIRS); do \
- cat $$i/common.src $$i/windows.src | sed "s/^/$$i\\\\/"; \
- done > list
- clean:
- if test -e list; then \
- rm list; \
- fi; \
- \
- if test -e System.dll; then \
- rm System.dll; \
- fi; \
|