]> git.saurik.com Git - wxWidgets.git/blame - utils/ogl/samples/studio/makefile.unx
added Makefile[.in] for build using wxGTK method. Note that wxGTK's createall
[wxWidgets.git] / utils / ogl / samples / studio / makefile.unx
CommitLineData
306dfc2b
JS
1#
2# File: makefile.unx
3# Author: Julian Smart
4# Created: 1998
5# Updated:
6# Copyright: (c) 1998 Julian Smart
7#
8# "%W% %G%"
9#
10# Makefile for OGL Studio (UNIX).
11
12PROGRAM=studio
13
14OBJECTS=$(PROGRAM).o doc.o shapes.o symbols.o view.o cspalette.o\
15 mainfrm.o project.o dialogs.o csprint.o
16
a5dec9e5 17EXTRACPPFLAGS=-I$(WXDIR)/utils/ogl/src -I./bitmaps
306dfc2b
JS
18EXTRALDLIBS=-logl$(GUISUFFIX)
19
a5dec9e5 20#WXDIR=/home/jacs/wx2
306dfc2b
JS
21
22include $(WXDIR)/src/makeprog.env
23
24cleanogl:
25 cd $(WXDIR)/utils/ogl/src; make -f makefile.unx cleanmotif
26
27ogl:
28 cd $(WXDIR)/utils/ogl/src; make -f makefile.unx motif
29
30wx:
31 cd $(WXDIR)/src/motif; make -f makefile.unx motif
32
33cleanwx:
34 cd $(WXDIR)/src/motif; make -f makefile.unx cleanmotif
35
36cleanall: cleanmotif cleanogl cleanwx
37
38makeall: wx ogl motif
39