File: Imakefile

package info (click to toggle)
acfax 981011-14.1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 448 kB
  • ctags: 737
  • sloc: ansic: 5,501; makefile: 34
file content (57 lines) | stat: -rw-r--r-- 2,070 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#
#  Imakefile for:
#    ACfax - Fax reception with X11-interface for amateur radio
#    Copyright (C) 1995-1998 Andreas Czechanowski, DL4SDC
#
#    This program is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; either version 2 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program; if not, write to the Free Software Foundation,
#    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#    andreas.czechanowski@ins.uni-stuttgart.de
#    

#
# set DEFINES according to your conditions :
#
# USE_XAW3D :	define this if you have the Xaw3d-library
# SBL_16    :	if you have a SoundBlaster 16 which has a software-
#		controllable mixer device (/dev/mixer)
# HAVE_LTOA :	define if you have a function ltoa() converting long ints to
#		strings. A replacement is defined else.
# DSP_SELECT :  define this if your kernel supports select() on /dev/dsp
#		(kernels 2.0+ and even 1.3.82 do this !)
#

        DEFINES = -DSBL_16 -DDSP_SELECT -O2 -Wall

           SRCS = acfax.c Canvas.c mod_demod.c sblaster.c fax_funcs.c \
		x_image.c widgets.c \
		FChooser.c Directory.c DirMgr.c RegExp.c
           OBJS = acfax.o Canvas.o mod_demod.o sblaster.o fax_funcs.o \
		x_image.o widgets.o \
		FChooser.o Directory.o DirMgr.o RegExp.o

       INCLUDES = -I.
LOCAL_LIBRARIES = -lXaw $(XTOOLONLYLIB) $(XONLYLIB) -lm
  SYS_LIBRARIES =

all:: acfax

ComplexProgramTargetNoMan(acfax)

acfax.o:	global.h mod_demod.h sblaster.h widgets.h
widgets.o:	widgets.h
fax_funcs.o:	fax_funcs.h x_image.h sblaster.h mod_demod.h
x_image.o:	x_image.h
sblaster.o:	sblaster.h mod_demod.h
mod_demod.o:	mod_demod.h