]> git.saurik.com Git - wxWidgets.git/blob - samples/dragimag/makefile.twn
Added test for region clipping.
[wxWidgets.git] / samples / dragimag / makefile.twn
1 #
2 # File: makefile.unx
3 # Author: Julian Smart
4 # Created: 1993
5 # Updated:
6 # Copyright: (c) 1993, AIAI, University of Edinburgh
7 #
8 # "%W% %G%"
9 #
10 # Makefile for test example (UNIX).
11
12 WXDIR = ../..
13
14 # All common UNIX compiler flags and options are now in
15 # this central makefile.
16 include $(WXDIR)/src/maketwin.env
17
18 OBJECTS = $(OBJDIR)/test.$(OBJSUFF) $(OBJDIR)/test_resources.$(OBJSUFF)
19
20 all: $(OBJDIR) test$(GUISUFFIX)$(EXESUFF)
21
22 wx:
23
24 $(OBJDIR):
25 mkdir $(OBJDIR)
26
27 test$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
28 $(CC) $(LDFLAGS) -o test$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
29
30 $(OBJDIR)/test.$(OBJSUFF): test.$(SRCSUFF)
31 $(CC) -c $(CPPFLAGS) -o $@ test.$(SRCSUFF)
32
33 test_resources.c: test.rc
34 $(RESCOMP) $(RCINPUTSWITCH) test.rc $(RCOUTPUTSWITCH) test_resources.c $(RESFLAGS)
35
36 $(OBJDIR)/test_resources.$(OBJSUFF): test_resources.c
37 $(CC) -c $(CPPFLAGS) -o $@ test_resources.c
38
39 #$(OBJDIR)/test_resources.o: test.rc
40 # $(RESCOMP) $(RCINPUTSWITCH) test.rc $(RCOUTPUTSWITCH) $(OBJDIR)/test_resources.o $(RESFLAGS)
41
42 clean:
43 rm -f $(OBJECTS) test$(GUISUFFIX).exe core *.rsc *.res