Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Quote strings containing `pwd` to deal with spaces in dir name. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a9323c79a5c7f3a7da244df50fae6c13 |
User & Date: | marc 2010-03-15 19:19:42 |
Context
2011-06-28
| ||
04:49 | no comment Leaf check-in: a4ba0c7a9c user: ron tags: trunk | |
2010-03-15
| ||
19:19 | Quote strings containing `pwd` to deal with spaces in dir name. check-in: a9323c79a5 user: marc tags: trunk | |
19:17 | Define missing window, window_end, window_show in revagui.f check-in: 3fdd0d8d99 user: marc tags: trunk | |
Changes
Changes to Makefile.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
CPP=g++ -O3 -s OBJDIR=obj # cross compile for Windows: CROSS=0 PWD=$(shell pwd) ifeq ($(os),Darwin) INC=-I`pwd`/fltk-1.3/ -I/usr/include LIB= `pwd`/fltk-1.3/maclib/libfltk.a -lpthread -framework Carbon -framework ApplicationServices TARGET=librevagui.dylib endif ifeq ($(os),Linux) INC=-I$(PWD)/fltk-1.3/ LIB=$(PWD)/fltk-1.3/linlib/libfltk.a -lXext -lfontconfig -ldl -lm -lX11 TARGET=librevagui.so CPP+=$(OPTIM) |
| | |
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
CPP=g++ -O3 -s OBJDIR=obj # cross compile for Windows: CROSS=0 PWD=$(shell pwd) ifeq ($(os),Darwin) INC=-I"`pwd`/fltk-1.3/" -I/usr/include LIB= "`pwd`/fltk-1.3/maclib/libfltk.a" -lpthread -framework Carbon -framework ApplicationServices TARGET=librevagui.dylib endif ifeq ($(os),Linux) INC=-I$(PWD)/fltk-1.3/ LIB=$(PWD)/fltk-1.3/linlib/libfltk.a -lXext -lfontconfig -ldl -lm -lX11 TARGET=librevagui.so CPP+=$(OPTIM) |