ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/VTBFileUtil2/makefile
Revision: 258
Committed: 2003-08-16T00:16:10-07:00 (21 years, 10 months ago) by douglas
File size: 465 byte(s)
Log Message:
Added a makefile.

File Contents

# Content
1 # Vance Thrift and Biller File Utility 2
2 #
3 # Douglas Thrift
4 #
5 # $Id: makefile,v 1.1 2003/08/16 07:16:10 douglas Exp $
6
7 !INCLUDE <Win32.mak>
8
9 CSRC = VTBFileUtil2.cxx
10 HDRS = $(CSRC:cxx=h)
11 OBJS = $(CSRC:cxx=obj) VTBFileUtil2.res
12 EXEC = VTBFileUtil2.exe
13
14 all: $(EXEC)
15
16 $(EXEC): $(OBJS)
17 $(link) $(guilflags) $(OBJS) /out:$(EXEC) $(guilibs) comctl32.lib
18
19 .cxx.obj::
20 $(cc) $(cflags) /O2 /EHsc $< /c
21
22 .rc.res::
23 $(rc) $(rcflags) $(rcvars) $<
24
25 clean:
26 del $(OBJS) $(EXEC)