]> git.saurik.com Git - wxWidgets.git/blob - samples/ogl/studio/makefile.unx
1. wxShell fixes: now really uses shell (it wasn't different from wxExecute!)
[wxWidgets.git] / samples / ogl / studio / makefile.unx
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
12 PROGRAM=studio
13
14 OBJECTS=$(PROGRAM).o doc.o shapes.o symbols.o view.o cspalette.o\
15 mainfrm.o project.o dialogs.o csprint.o
16
17 EXTRACPPFLAGS=-I$(WXDIR)/utils/ogl/src -I./bitmaps
18 EXTRALDLIBS=-logl$(GUISUFFIX)
19
20 #WXDIR=/home/jacs/wx2
21
22 include $(WXDIR)/src/makeprog.env
23
24 cleanogl:
25 cd $(WXDIR)/utils/ogl/src; make -f makefile.unx cleanmotif
26
27 ogl:
28 cd $(WXDIR)/utils/ogl/src; make -f makefile.unx motif
29
30 wx:
31 cd $(WXDIR)/src/motif; make -f makefile.unx motif
32
33 cleanwx:
34 cd $(WXDIR)/src/motif; make -f makefile.unx cleanmotif
35
36 cleanall: cleanmotif cleanogl cleanwx
37
38 makeall: wx ogl motif
39