ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/SiteMapper/makefile
Revision: 126
Committed: 2004-03-23T19:48:15-08:00 (21 years, 3 months ago) by Douglas Thrift
File size: 484 byte(s)
Log Message:
Fancy!

File Contents

# Content
1 # Bender
2 #
3 # Douglas Thrift
4 #
5 # $Id: makefile 119 2004-03-18 05:15:24Z Douglas Thrift $
6
7 !INCLUDE <Win32.mak>
8
9 CSRC = SiteMapper.cpp Matcher.cpp
10 HDRS = $(CSRC:cpp=hpp)
11 OBJS = $(CSRC:cpp=obj)
12 EXEC = SiteMapper.exe
13
14 LIBS = Xalan-C_1.lib xerces-c_2.lib pcre.lib
15
16 all: $(EXEC)
17
18 $(EXEC): $(OBJS)
19 $(link) $(conlflags) $(OBJS) $(winsocklibs) $(LIBS) /out:$(EXEC)
20
21 .cpp.obj::
22 $(cc) $(cvars) $(cflags) /O2 /EHsc $< /c
23
24 #.rc.res::
25 # $(rc) $(rcflags) $(rcvars) $<
26
27 clean:
28 del $(OBJS) $(EXEC)