ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/SiteMapper/makefile
Revision: 134
Committed: 2004-03-24T22:23:19-08:00 (21 years, 2 months ago) by Douglas Thrift
File size: 443 byte(s)
Log Message:
Making more sense.

File Contents

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

Properties

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