~ubuntu-branches/debian/jessie/acfax/jessie

« back to all changes in this revision

Viewing changes to .pc/imake-changes.patch/Imakefile

  • Committer: Package Import Robot
  • Author(s): Colin Tuckley
  • Date: 2014-02-10 20:23:51 UTC
  • Revision ID: package-import@ubuntu.com-20140210202351-id1r9lub15jv2dti
Tags: 981011-16
* Convert to source format 3.0 (quilt)
* Remove refs to unused and deprecated getwd
* Change Arch to linux-any since osspd isn't available elsewhere
* Fix various implicit def warnings by adding required .h file includes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
#  Imakefile for:
 
3
#    ACfax - Fax reception with X11-interface for amateur radio
 
4
#    Copyright (C) 1995-1998 Andreas Czechanowski, DL4SDC
 
5
#
 
6
#    This program is free software; you can redistribute it and/or modify
 
7
#    it under the terms of the GNU General Public License as published by
 
8
#    the Free Software Foundation; either version 2 of the License, or
 
9
#    (at your option) any later version.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU General Public License
 
17
#    along with this program; if not, write to the Free Software Foundation,
 
18
#    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
19
#
 
20
#    andreas.czechanowski@ins.uni-stuttgart.de
 
21
#    
 
22
 
 
23
#
 
24
# set DEFINES according to your conditions :
 
25
#
 
26
# USE_XAW3D :   define this if you have the Xaw3d-library
 
27
# SBL_16    :   if you have a SoundBlaster 16 which has a software-
 
28
#               controllable mixer device (/dev/mixer)
 
29
# HAVE_LTOA :   define if you have a function ltoa() converting long ints to
 
30
#               strings. A replacement is defined else.
 
31
# DSP_SELECT :  define this if your kernel supports select() on /dev/dsp
 
32
#               (kernels 2.0+ and even 1.3.82 do this !)
 
33
#
 
34
 
 
35
        DEFINES = -DUSE_XAW3D -DSBL_16 -DDSP_SELECT -O2 -Wall
 
36
 
 
37
           SRCS = acfax.c Canvas.c mod_demod.c sblaster.c fax_funcs.c \
 
38
                x_image.c widgets.c \
 
39
                FChooser.c Directory.c DirMgr.c RegExp.c
 
40
           OBJS = acfax.o Canvas.o mod_demod.o sblaster.o fax_funcs.o \
 
41
                x_image.o widgets.o \
 
42
                FChooser.o Directory.o DirMgr.o RegExp.o
 
43
 
 
44
       INCLUDES = -I.
 
45
LOCAL_LIBRARIES = -lXaw3d $(XMULIB) $(XTOOLLIB) $(XLIB) -lm
 
46
  SYS_LIBRARIES =
 
47
 
 
48
all:: acfax
 
49
 
 
50
ComplexProgramTarget(acfax)
 
51
 
 
52
acfax.o:        global.h mod_demod.h sblaster.h widgets.h
 
53
widgets.o:      widgets.h
 
54
fax_funcs.o:    fax_funcs.h x_image.h sblaster.h mod_demod.h
 
55
x_image.o:      x_image.h
 
56
sblaster.o:     sblaster.h mod_demod.h
 
57
mod_demod.o:    mod_demod.h