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