]> git.saurik.com Git - wxWidgets.git/blame - src/makelib.vc
rewritten to use wxTheMimeTypesManager
[wxWidgets.git] / src / makelib.vc
CommitLineData
48d1144b
JS
1#
2# File: makelib.vc
3# Author: Julian Smart
4# Created: 1999
8a28f119 5# Updated:
48d1144b
JS
6# Copyright: (c) Julian Smart
7#
8# Makefile : Builds a library for a utility
9# Use FINAL=1 argument to nmake to build final version with no debugging
10# info
11
3e1ed7d7 12# Set WXDIR for your system (hint, set an environment variable named WXWIN)
b4d1ebf0 13WXDIR = $(WXWIN)
48d1144b
JS
14
15!include $(WXDIR)\src\makevc.env
16
17all: $(LIBTARGET)
18
19wx:
20 cd $(WXDIR)\src\msw
21 nmake -f makefile.vc FINAL=$(FINAL)
22
23wxclean:
24 cd $(WXDIR)\src\msw
25 nmake -f makefile.vc clean
26
27$(LIBTARGET): $(OBJECTS)
28 -erase $(LIBTARGET)
29 $(implib) @<<
30-out:$(LIBTARGET)
31-machine:$(CPU)
32$(OBJECTS)
33<<
34
35clean:
36 -erase $(LIBTARGET)
37 -erase $(OBJECTS)
38 -erase *.exe
39 -erase *.res
40 -erase *.map
41 -erase *.sbr
42 -erase *.pdb