]> git.saurik.com Git - wxWidgets.git/blame - samples/typetest/makefile.twn
added test for loading image from wxMemoryStream
[wxWidgets.git] / samples / typetest / makefile.twn
CommitLineData
367e57ec
RL
1# Purpose: makefile for typetest example (TWIN)
2# Created: 2000-03-14
3
4WXDIR = ../..
5
6# All common UNIX compiler flags and options are now in
7# this central makefile.
8include $(WXDIR)/src/maketwin.env
9
10OBJECTS = $(OBJDIR)/typetest.$(OBJSUFF) $(OBJDIR)/typetest.$(OBJSUFF)
11
12all: $(OBJDIR) typetest$(GUISUFFIX)$(EXESUFF)
13
14wx:
15
16$(OBJDIR):
17 mkdir $(OBJDIR)
18
19typetest$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
20 $(CC) $(LDFLAGS) -o typetest$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
21
22$(OBJDIR)/typetest.$(OBJSUFF): typetest.$(SRCSUFF)
23 $(CC) -c $(CPPFLAGS) -o $@ typetest.$(SRCSUFF)
24
25typetest.c: typetest.rc
26 $(RESCOMP) $(RCINPUTSWITCH) typetest.rc $(RCOUTPUTSWITCH) typetest.c $(RESFLAGS)
27
28$(OBJDIR)/typetest.$(OBJSUFF): typetest.c
29 $(CC) -c $(CPPFLAGS) -o $@ typetest.c
30
31#$(OBJDIR)/typetest.o: typetest.rc
32# $(RESCOMP) $(RCINPUTSWITCH) typetest.rc $(RCOUTPUTSWITCH) $(OBJDIR)/typetest.o $(RESFLAGS)
33
34clean:
35 rm -f $(OBJECTS) typetest$(GUISUFFIX).exe core *.rsc *.res