]> git.saurik.com Git - wxWidgets.git/blob - samples/splitter/makefile.g95
Removed redundant makefiles and AIAI icons. Changed dynamic sample source name from
[wxWidgets.git] / samples / splitter / makefile.g95
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 splitter 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/makeg95.env
17
18 OBJECTS = $(OBJDIR)/test.$(OBJSUFF)
19
20 all: $(OBJDIR) test$(GUISUFFIX)$(EXESUFF)
21
22 wx:
23
24 $(OBJDIR):
25 mkdir $(OBJDIR)
26
27 test$(GUISUFFIX)$(EXESUFF): $(OBJDIR)/test.$(OBJSUFF) test.res $(WXLIB)
28 $(CC) $(LDFLAGS) -o test$(GUISUFFIX)$(EXESUFF) $(OBJDIR)/test.$(OBJSUFF) $(XVIEW_LINK) $(LDLIBS)
29 $(RSRC) test.$(RESSUFF) test.exe
30
31 $(OBJDIR)/test.$(OBJSUFF): test.$(SRCSUFF)
32 $(CC) -c $(CPPFLAGS) -o $@ test.$(SRCSUFF)
33
34 test.res: test.rc
35
36 clean:
37 rm -f $(OBJECTS) test$(GUISUFFIX).exe core *.rsc *.res