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