home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
wxos2233.zip
/
wxOS2-2_3_3.zip
/
wxWindows-2.3.3
/
contrib
/
src
/
applet
/
makefile
< prev
next >
Wrap
Makefile
|
2001-05-03
|
885b
|
33 lines
#############################################################################
#
# Copyright (C) 1999 SciTech Software
# All rights reserved.
#
# Descripton: Generic makefile for the SciTech wxApplet library
#
#############################################################################
# We are building with the Win32 version
USE_RTTI := 1
USE_CPPEXCEPT := 1
PRECOMP_HDR := wx/wxprec.h
CFLAGS += -D__WIN95__ -D__WXMSW__ -D__WINDOWS__
# Link with wxWindows static link libraries or with the DLL. DLL is default.
.IF $(STATIC_LINK)
.ELSE
CFLAGS += -DWXUSINGDLL
.ENDIF
# Define the library name and objects
LIBFILE = wxapplet$L
LIBCLEAN = *.il? *.dll *.lib
OBJECTS := applet$O appletwindow$O
DEPEND_OBJ = $(OBJECTS)
.INCLUDE: "$(SCITECH)\makedefs\common.mk"