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