]> git.saurik.com Git - wxWidgets.git/blame - contrib/samples/ogl/studio/makefile.unx
Added icons.
[wxWidgets.git] / contrib / samples / ogl / studio / makefile.unx
CommitLineData
1fc25a89
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
17EXTRACPPFLAGS=-I$(WXDIR)/utils/ogl/src -I./bitmaps
18EXTRALDLIBS=-logl$(GUISUFFIX)
19
20#WXDIR=/home/jacs/wx2
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