diff options
author | B. Bogart <bbogart@users.sourceforge.net> | 2010-02-19 18:42:35 +0000 |
---|---|---|
committer | B. Bogart <bbogart@users.sourceforge.net> | 2010-02-19 18:42:35 +0000 |
commit | 435811629736ea5fff5b19918b2a71236567c5cb (patch) | |
tree | 811520dc81bdd9619386c6655645396eb4f33002 /gphoto/makefile | |
parent | d3636631c08c99bacbb40bb2313c770044f4b55e (diff) |
Added "open" and "close" methods so that many commands can be executed
without needed to reinitialize the camera (which can only be done a
limited number of times).
Fixed problems with running on newer PDs (>0.40-4).
Cleaned up code a little, removed problems leading to many warnings.
Updates to help file.
svn path=/trunk/externals/bbogart/; revision=13174
Diffstat (limited to 'gphoto/makefile')
-rw-r--r-- | gphoto/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gphoto/makefile b/gphoto/makefile index 5b7e264..f87381e 100644 --- a/gphoto/makefile +++ b/gphoto/makefile @@ -10,7 +10,7 @@ pd_linux: gphoto.pd_linux .SUFFIXES: .pd_linux LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer \ - -Wall -g -W -Wshadow -Wstrict-prototypes \ + -Wall -W -Wshadow -Wstrict-prototypes \ -Wno-unused -Wno-parentheses -Wno-switch \ -lgphoto2 -lpthread @@ -19,7 +19,7 @@ LINUXINCLUDE = -I../../src .c.pd_linux: cc $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c -ggdb ld -shared -o $*.pd_linux $*.o -lc -lm -lgphoto2 - #strip --strip-unneeded $*.pd_linux + strip --strip-unneeded $*.pd_linux rm $*.o |