mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
0b530eecbb
Dc20pack can control a Kodak DC20/25 digital camera via the embedded serial port. Pictures are initially downloaded in the camera's native format but can be converted to targa format. Note that I did not test this personally as I don't own a DC20/25 :). The submitter says that it works, though. PR: 12909 Submitted by: Maurice Castro <maurice@serc.rmit.edu.au>
16 lines
410 B
Plaintext
16 lines
410 B
Plaintext
--- Makefile.orig Wed Sep 8 18:38:19 1999
|
|
+++ Makefile Wed Sep 8 18:38:34 1999
|
|
@@ -1,10 +1,10 @@
|
|
all: dc20term dc2totga
|
|
|
|
dc20term: dc20_ui.o dc20_hif.o
|
|
- gcc -o $@ dc20_ui.o dc20_hif.o
|
|
+ ${CC} ${CFLAGS} -o $@ dc20_ui.o dc20_hif.o
|
|
|
|
dc2totga: dc2totga.c
|
|
- gcc -O3 -o dc2totga dc2totga.c -lm
|
|
+ ${CC} ${CFLAGS} -o dc2totga dc2totga.c -lm
|
|
|
|
clean:
|
|
rm -f dc20_ui.o dc20_hif.o dc2totga.o dc20term dc2totga
|