]>
Commit | Line | Data |
---|---|---|
8e08b761 JS |
1 | # |
2 | # File: makefile.vc | |
3 | # Author: Hans Van Leemputten | |
4 | # Created: 2001 | |
5 | # Updated: | |
6 | # Copyright: (c) wxWorkshop team, 2001 | |
7 | # | |
8 | # Makefile for wxWindows FrameLayout library (Microsoft VC++) | |
9 | # Use FINAL=1 argument to nmake to build final version with no debug info. | |
10 | ||
11 | WXDIR = ..\..\.. | |
12 | LIB_NAME = fl | |
13 | OBJ_EXT = obj | |
14 | ||
15 | !include files.lst | |
16 | ||
17 | !if "$(FINAL)" == "1" | |
18 | LIBTARGET=$(WXDIR)\lib\$(LIB_NAME).lib | |
19 | !else | |
20 | LIBTARGET=$(WXDIR)\lib\$(LIB_NAME)d.lib | |
21 | !endif | |
22 | ||
23 | OBJECTS = $(FL_OBJECTS) | |
24 | ||
25 | !include $(WXWIN)\src\makelib.vc | |
26 |