Added GLCanvas library (Win only at present).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@546 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
37
utils/glcanvas/samples/cube/makefile.g95
Normal file
37
utils/glcanvas/samples/cube/makefile.g95
Normal file
@@ -0,0 +1,37 @@
|
||||
#
|
||||
# File: makefile.unx
|
||||
# Author: Julian Smart
|
||||
# Created: 1993
|
||||
# Updated:
|
||||
# Copyright: (c) 1993, AIAI, University of Edinburgh
|
||||
#
|
||||
# "%W% %G%"
|
||||
#
|
||||
# Makefile for cube example (UNIX).
|
||||
|
||||
WXDIR = ../..
|
||||
|
||||
# All common UNIX compiler flags and options are now in
|
||||
# this central makefile.
|
||||
include $(WXDIR)/src/makeg95.env
|
||||
|
||||
OBJECTS = $(OBJDIR)/cube.$(OBJSUFF)
|
||||
|
||||
all: $(OBJDIR) cube$(GUISUFFIX)$(EXESUFF)
|
||||
|
||||
wx:
|
||||
|
||||
$(OBJDIR):
|
||||
mkdir $(OBJDIR)
|
||||
|
||||
cube$(GUISUFFIX)$(EXESUFF): $(OBJDIR)/cube.$(OBJSUFF) cube.res $(WXLIB)
|
||||
$(CC) $(LDFLAGS) -o cube$(GUISUFFIX)$(EXESUFF) $(OBJDIR)/cube.$(OBJSUFF) $(LDLIBS)
|
||||
$(RSRC) cube.$(RESSUFF) cube.exe
|
||||
|
||||
$(OBJDIR)/cube.$(OBJSUFF): cube.$(SRCSUFF)
|
||||
$(CC) -c $(CPPFLAGS) -o $@ cube.$(SRCSUFF)
|
||||
|
||||
cube.res: cube.rc
|
||||
|
||||
clean:
|
||||
rm -f $(OBJECTS) cube$(GUISUFFIX).exe core *.rsc *.res
|
Reference in New Issue
Block a user