]> git.saurik.com Git - wxWidgets.git/blame - contrib/src/applet/makefile
Removed ambiguity between deprecated and new constructor.
[wxWidgets.git] / contrib / src / applet / makefile
CommitLineData
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
13USE_RTTI := 1
14USE_CPPEXCEPT := 1
15PRECOMP_HDR := wx/wxprec.h
16CFLAGS += -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
22CFLAGS += -DWXUSINGDLL
23.ENDIF
d9b91de7 24
833e610d 25# Define the library name and objects
d9b91de7 26
833e610d
CE
27LIBFILE = wxapplet$L
28LIBCLEAN = *.il? *.dll *.lib
29OBJECTS := applet$O appletwindow$O
d9b91de7 30
833e610d
CE
31DEPEND_OBJ = $(OBJECTS)
32.INCLUDE: "$(SCITECH)\makedefs\common.mk"
d9b91de7 33