a5dec9e54d
to bitmaps git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1832 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
40 lines
742 B
Plaintext
40 lines
742 B
Plaintext
#
|
|
# 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
|
|
|
|
EXTRACPPFLAGS=-I$(WXDIR)/utils/ogl/src -I./bitmaps
|
|
EXTRALDLIBS=-logl$(GUISUFFIX)
|
|
|
|
#WXDIR=/home/jacs/wx2
|
|
|
|
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
|
|
|