ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/HostUpdate/makefile
Revision: 24
Committed: 2003-11-11T12:33:38-08:00 (21 years, 7 months ago) by Douglas Thrift
File size: 380 byte(s)
Log Message:
Fixed some bugs, ooh!

File Contents

# User Rev Content
1 Douglas Thrift 3 # HostUpdate
2     #
3     # Douglas Thrift
4     #
5     # $Id$
6    
7     !INCLUDE <Win32.mak>
8    
9 Douglas Thrift 9 CSRC = HostUpdate.cpp Host.cpp
10 Douglas Thrift 3 HDRS = $(CSRC:cpp=hpp)
11     OBJS = $(CSRC:cpp=obj)
12 Douglas Thrift 17 EXEC = hostupdate.cgi
13 Douglas Thrift 3
14     all: $(EXEC)
15    
16     $(EXEC): $(OBJS)
17 Douglas Thrift 17 $(link) $(conlflags) $(OBJS) $(winsocklibs) /out:$(EXEC)
18 Douglas Thrift 3
19     .cpp.obj::
20 Douglas Thrift 24 $(cc) $(cvars) $(cflags) /O2 /EHsc $< /c
21 Douglas Thrift 3
22     #.rc.res::
23     # $(rc) $(rcflags) $(rcvars) $<
24    
25     clean:
26     del $(OBJS) $(EXEC)

Properties

Name Value
svn:eol-style native
svn:keywords Id