~ubuntu-branches/ubuntu/trusty/photopc/trusty

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): John Goerzen
  • Date: 2000-09-04 12:34:52 UTC
  • Revision ID: james.westby@ubuntu.com-20000904123452-8kkxsbtmm1opsnlw
Tags: upstream-3.04
ImportĀ upstreamĀ versionĀ 3.04

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##      $Id: Makefile.am,v 1.6 1999/11/09 18:55:02 crosser Exp $
 
2
##
 
3
#       FSF thinks that the source generated by a tool copyrighted
 
4
#       by FSF is also copyrighted by FSF.  This might be true, but
 
5
#       still, if you read this text in Makefile.in or Makefile, then
 
6
#       be informed that the orifinal file, and the "meat" of the
 
7
#       package, is:
 
8
#
 
9
#       Copyright (c) 1997-1999 Eugene G. Crosser
 
10
#       Copyright (c) 1998 Bruce D. Lightner (DOS/Windows support)
 
11
#
 
12
#       You may distribute and/or use for any purpose modified or unmodified
 
13
#       copies of this software if you preserve the copyright notice above.
 
14
#
 
15
#       THIS SOFTWARE IS PROVIDED AS IS AND COME WITH NO WARRANTY OF ANY
 
16
#       KIND, EITHER EXPRESSED OR IMPLIED.  IN NO EVENT WILL THE
 
17
#       COPYRIGHT HOLDER BE LIABLE FOR ANY DAMAGES RESULTING FROM THE
 
18
#       USE OF THIS SOFTWARE.
 
19
##
 
20
##      $Log: Makefile.am,v $
 
21
##      Revision 1.6  1999/11/09 18:55:02  crosser
 
22
##      work on windows version
 
23
##      
 
24
##      Revision 1.5  1999/08/14 09:00:33  crosser
 
25
##      Create version.h's in dos and win23 directories
 
26
##      
 
27
##      Revision 1.4  1999/08/01 23:28:06  crosser
 
28
##      multiple enhancements
 
29
##
 
30
##      Revision 1.3  1999/08/01 12:37:10  crosser
 
31
##      typo
 
32
##
 
33
##      Revision 1.2  1999/08/01 12:31:00  crosser
 
34
##      add options, make notice about the copyright
 
35
##
 
36
##      Revision 1.1  1999/07/29 07:53:33  crosser
 
37
##      Initial revision
 
38
##
 
39
 
 
40
AUTOMAKE_OPTIONS = foreign ansi2knr
 
41
 
 
42
bin_PROGRAMS    = photopc epinfo
 
43
lib_LIBRARIES   = libeph_io.a
 
44
include_HEADERS = eph_io.h
 
45
man_MANS        = photopc.1 epinfo.1
 
46
 
 
47
EXTRA_DIST      = $(man_MANS) protocol.htm usage.htm readme.dos \
 
48
                        dos/Makefile dos/config.h dos/version.h \
 
49
                        win32/Makefile win32/config.h win32/version.h
 
50
 
 
51
photopc_SOURCES = photopc.c a12scan.c a12scan.h fnames.c fnames.h \
 
52
                        ctimez.c ctimez.h filetime.c filetime.h \
 
53
                        exifscan.c exifscan.h eph_io.h
 
54
                        
 
55
EXTRA_photopc_SOURCES = comio.c comio.h getopt.h usleep.h strcscmp.h
 
56
photopc_LDADD   = @LIBOBJS@ libeph_io.a
 
57
 
 
58
epinfo_SOURCES  = epinfo.c a12scan.c a12scan.h exifscan.c exifscan.h \
 
59
                        fnames.c fnames.h ctimez.c ctimez.h \
 
60
                        filetime.c filetime.h
 
61
EXTRA_epinfo_SOURCES = getopt.h
 
62
epinfo_LDADD    = @LIBOBJS@
 
63
 
 
64
libeph_io_a_SOURCES = eph_read.c eph_iob.c eph_err.c eph_cmd.c eph_io.c \
 
65
                        eph_open.c eph_io.h eph_priv.h
 
66