]>
Commit | Line | Data |
---|---|---|
833e610d CE |
1 | ############################################################################# |
2 | # | |
3 | # Copyright (C) 1999 SciTech Software | |
4 | # All rights reserved. | |
5 | # | |
c6afb815 JS |
6 | # Description: Generic makefile for the SciTech wxApplet library |
7 | # License: wxWindows license | |
833e610d CE |
8 | # |
9 | ############################################################################# | |
d9b91de7 | 10 | |
833e610d | 11 | # We are building with the Win32 version |
d9b91de7 | 12 | |
833e610d CE |
13 | USE_RTTI := 1 |
14 | USE_CPPEXCEPT := 1 | |
15 | PRECOMP_HDR := wx/wxprec.h | |
16 | CFLAGS += -D__WIN95__ -D__WXMSW__ -D__WINDOWS__ | |
d9b91de7 | 17 | |
833e610d | 18 | # Link with wxWindows static link libraries or with the DLL. DLL is default. |
d9b91de7 | 19 | |
833e610d CE |
20 | .IF $(STATIC_LINK) |
21 | .ELSE | |
22 | CFLAGS += -DWXUSINGDLL | |
23 | .ENDIF | |
d9b91de7 | 24 | |
833e610d | 25 | # Define the library name and objects |
d9b91de7 | 26 | |
833e610d CE |
27 | LIBFILE = wxapplet$L |
28 | LIBCLEAN = *.il? *.dll *.lib | |
29 | OBJECTS := applet$O appletwindow$O | |
d9b91de7 | 30 | |
833e610d CE |
31 | DEPEND_OBJ = $(OBJECTS) |
32 | .INCLUDE: "$(SCITECH)\makedefs\common.mk" | |
d9b91de7 | 33 |