]> git.saurik.com Git - wxWidgets.git/blame - samples/minimal/makefile.mic
Removed all deprecated printing code.
[wxWidgets.git] / samples / minimal / makefile.mic
CommitLineData
04ef50df
JS
1##############################################################################
2# Microwindows template Makefile
3# Copyright (c) 2000 Martin Jolicoeur, Greg Haerr
4##############################################################################
5
d2913c40
JS
6TOP=$(MICROWINDOWS)
7ifeq "$(MICROWINDOWS)" ""
8TOP=/home/julians/local/microwindows/microwindows-0.89pre8/src
9endif
10
04ef50df
JS
11CONFIG = $(TOP)/config
12WXDIR = ../..
13OBJSUFF = o
14SRCSUFF = cpp
15WXLIB=$(WXDIR)/lib/libwx.a
16AROPTIONS = ruv
17RANLIB = ranlib
18RM = rm -f
19
20ZLIBLIB = $(WXDIR)/lib/libzlib.a
21PNGLIB = $(WXDIR)/lib/libpng.a
22JPEGLIB = $(WXDIR)/lib/libjpeg.a
23TIFFLIB = $(WXDIR)/lib/libtiff.a
24
25include $(CONFIG)
26
27######################## Additional Flags section ############################
28
29# Directories list for header files
30INCLUDEDIRS += -I$(WXDIR)/include
31# Defines for preprocessor
8cb172b4 32DEFINES += -DMWIN -D__WXMSW__ -D__WXMICROWIN__ -D__WXUNIVERSAL__ -D__WIN32__ -D__WIN95__ -DHAVE_BOOL -DMICROWIN_TODO=1 -D__UNIX__ -DHAVE_NANOSLEEP -DMICROWIN_NOCONTROLS -D__WXDEBUG__ -DwxSIZE_T_IS_UINT -DWXWIN_OS_DESCRIPTION="\"MicroWindows\""
04ef50df
JS
33
34# Compilation flags for C files OTHER than include directories
35CFLAGS +=
36# Preprocessor flags OTHER than defines
37CPPFLAGS +=
38# Linking flags
39#LDFLAGS += -lwx -L$(WXDIR)/lib
40LDFLAGS += $(WXLIB)
41
42############################# targets section ################################
43
44# If you want to create a library with the objects files, define the name here
45LIBNAME =
46
47# If we put it below OBJS=, Makefile.rules includes .depend
48# and it continually looks for .c files to satisfy .o.cpp
49# dependency. What's going on there?
50include $(TOP)/Makefile.rules
51
52# List of objects to compile
53OBJS = minimal.o
04ef50df
JS
54
55all: minimal
56
57######################### Makefile.rules section #############################
58
59
60
61######################## Tools targets section ###############################
62
63minimal: $(OBJS) $(MWINLIBS) $(WXLIB) $(TOP)/config
64 $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@ $(WXLIB) $(MWINLIBS) -lm
65
04ef50df
JS
66#.SUFFIXES: .cpp .cxx .c
67
68#.c.o:
69# $(CC) -c $(CFLAGS) $(CFLAGS) -o $@ $*.c
70
71.cxx.o:
72 $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $*.cxx
73
74.cpp.o:
75 $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $*.cpp
76
04ef50df
JS
77cleanwx:
78 -$(RM) *.o
79 -$(RM) minimal
80
81wx:
5adad466 82 @pushd $(WXDIR)/src/msw; make -f makefile.mic all; popd
54800df8
JS
83
84wxfull:
85 @pushd $(WXDIR)/src/msw; make -f makefile.mic cleanwx all; popd