git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19983 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
33 lines
853 B
Makefile
33 lines
853 B
Makefile
#############################################################################
|
|
#
|
|
# 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"
|
|
|