1999-02-07 18:56:40 -05:00
|
|
|
#
|
|
|
|
# File: makefile.unx
|
|
|
|
# Author: Julian Smart
|
|
|
|
# Created: 1998
|
|
|
|
# Updated:
|
|
|
|
# Copyright: (c) 1998 Julian Smart
|
|
|
|
#
|
|
|
|
# "%W% %G%"
|
|
|
|
#
|
|
|
|
# Makefile for OGL Studio (UNIX).
|
|
|
|
|
|
|
|
PROGRAM=studio
|
|
|
|
|
|
|
|
OBJECTS=$(PROGRAM).o doc.o shapes.o symbols.o view.o cspalette.o\
|
|
|
|
mainfrm.o project.o dialogs.o csprint.o
|
|
|
|
|
1999-02-28 16:56:55 -05:00
|
|
|
EXTRACPPFLAGS=-I$(WXDIR)/utils/ogl/src -I./bitmaps
|
1999-02-07 18:56:40 -05:00
|
|
|
EXTRALDLIBS=-logl$(GUISUFFIX)
|
|
|
|
|
1999-02-28 16:56:55 -05:00
|
|
|
#WXDIR=/home/jacs/wx2
|
1999-02-07 18:56:40 -05:00
|
|
|
|
|
|
|
include $(WXDIR)/src/makeprog.env
|
|
|
|
|
|
|
|
cleanogl:
|
|
|
|
cd $(WXDIR)/utils/ogl/src; make -f makefile.unx cleanmotif
|
|
|
|
|
|
|
|
ogl:
|
|
|
|
cd $(WXDIR)/utils/ogl/src; make -f makefile.unx motif
|
|
|
|
|
|
|
|
wx:
|
|
|
|
cd $(WXDIR)/src/motif; make -f makefile.unx motif
|
|
|
|
|
|
|
|
cleanwx:
|
|
|
|
cd $(WXDIR)/src/motif; make -f makefile.unx cleanmotif
|
|
|
|
|
|
|
|
cleanall: cleanmotif cleanogl cleanwx
|
|
|
|
|
|
|
|
makeall: wx ogl motif
|
|
|
|
|