]> git.saurik.com Git - wxWidgets.git/blob - utils/glcanvas/samples/cube/makefile.g95
OpenGl works now under GTK
[wxWidgets.git] / utils / glcanvas / samples / cube / 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 cube 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)/cube.$(OBJSUFF)
19
20 all: $(OBJDIR) cube$(GUISUFFIX)$(EXESUFF)
21
22 wx:
23
24 $(OBJDIR):
25 mkdir $(OBJDIR)
26
27 cube$(GUISUFFIX)$(EXESUFF): $(OBJDIR)/cube.$(OBJSUFF) cube.res $(WXLIB)
28 $(CC) $(LDFLAGS) -o cube$(GUISUFFIX)$(EXESUFF) $(OBJDIR)/cube.$(OBJSUFF) $(LDLIBS)
29 $(RSRC) cube.$(RESSUFF) cube.exe
30
31 $(OBJDIR)/cube.$(OBJSUFF): cube.$(SRCSUFF)
32 $(CC) -c $(CPPFLAGS) -o $@ cube.$(SRCSUFF)
33
34 cube.res: cube.rc
35
36 clean:
37 rm -f $(OBJECTS) cube$(GUISUFFIX).exe core *.rsc *.res