ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/HostUpdate/makefile
Revision: 3
Committed: 2003-11-05T18:37:16-08:00 (21 years, 7 months ago) by Douglas Thrift
File size: 430 byte(s)
Log Message:
Did more stuff!

File Contents

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

Properties

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