ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/HostUpdate/makefile
Revision: 1
Committed: 2003-11-05T17:58:20-08:00 (21 years, 7 months ago) by Douglas Thrift
File size: 457 byte(s)
Log Message:
I like cheese!

File Contents

# User Rev Content
1 Douglas Thrift 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)