ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/HostUpdateSharp/makefile
Revision: 78
Committed: 2004-02-28T16:44:08-08:00 (21 years, 4 months ago) by Douglas Thrift
Original Path: HostUpdateSharp/Makefile
File size: 199 byte(s)
Log Message:
Blah! Where is the get fully qualified dns name?

File Contents

# User Rev Content
1 Douglas Thrift 78 # HostUpdate
2     #
3     # Douglas Thrift
4     #
5     # $Id$
6    
7     SRC = HostUpdateSharp.cs
8     EXEC = HostUpdateSharp.exe
9    
10     all: $(EXEC)
11    
12     $(EXEC): $(SRC)
13     csc /out:$(EXEC) /target:exe $(SRC)
14    
15     clean:
16     del $(EXEC)