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