]> git.saurik.com Git - wxWidgets.git/blob - src/applet/makefile
Changed WXUNUSED to WXUNUSED_UNLESS_DEBUG
[wxWidgets.git] / src / applet / makefile
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
12 USE_RTTI := 1
13 USE_CPPEXCEPT := 1
14 PRECOMP_HDR := wx/wxprec.h
15 CFLAGS += -D__WIN95__ -D__WXMSW__ -D__WINDOWS__
16
17 # Define the library name and objects
18
19 LIBFILE = wxapplet$L
20 LIBCLEAN = *.il? *.dll *.lib
21 OBJECTS := applet$O appletwindow$O
22
23 # Define the sample program to be compiled
24
25 EXELIBS = wxwin$L png$L jpeg$L tiff$L xpm$L ddstereo$L comctl32$L uuid$L
26 SAMP_OBJECTS = sample$O sample$R monitorapplet$O
27
28 sample$E: $(SAMP_OBJECTS) $(LIBFILE)
29
30 DEPEND_OBJ = $(OBJECTS) $(SAMP_OBJECTS)
31 DEPEND_SRC = sample
32 .SOURCE: sample
33 .INCLUDE: "$(SCITECH)\makedefs\common.mk"
34