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

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

Properties

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