~ubuntu-branches/ubuntu/raring/boxshade/raring-proposed

« back to all changes in this revision

Viewing changes to .pc/10_makefile.unx.patch/makefile.unx

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Tille, David Paleino, Andreas Tille
  • Date: 2011-01-14 08:27:01 UTC
  • Revision ID: james.westby@ubuntu.com-20110114082701-etwd13n9n7nz8h78
Tags: 3.3.1-5
[ David Paleino ]
* Removed myself from Uploaders

[ Andreas Tille ]
* debian/control
  - Standards-Version: 3.9.1 (no changes needed)
  - Debhelper 7
  - Fix spelling of Debian Med in maintainer address
* debian/rules: s/dh_clean -k/dh_prep/
* debian/source/format: 3.0 (quilt)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# BOXSHADE makefile for unix (tested under Linux && Solaris)
 
2
CC     = gcc
 
3
CFLAGS = -O
 
4
LDFLAGS= -s
 
5
LIBS   = -lm
 
6
OBJ    =.o
 
7
EXE    =
 
8
 
 
9
HEADER = bx_types.h bx_read.h dv_all.h
 
10
 
 
11
CSRCbx = box.c bx_read.c bx_misc.c
 
12
 
 
13
CSRCdv = dv_ansi.c dv_ascii.c dv_crt.c dv_fig.c\
 
14
         dv_hpgl.c dv_lj250.c dv_pict.c dv_ps.c\
 
15
         dv_regis.c dv_rtf.c dv_html.c
 
16
 
 
17
OBJS = box$(OBJ) bx_read$(OBJ) bx_misc$(OBJ) \
 
18
       dv_ansi$(OBJ) dv_ascii$(OBJ) dv_crt$(OBJ) dv_fig$(OBJ) \
 
19
       dv_hpgl$(OBJ) dv_lj250$(OBJ) dv_pict$(OBJ) dv_ps$(OBJ)\
 
20
       dv_regis$(OBJ) dv_rtf$(OBJ) dv_html$(OBJ)
 
21
 
 
22
boxshade$(EXE): $(OBJS)
 
23
        $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
 
24
 
 
25
depend:
 
26
        gcc -MM $(CSRCbx) >depend
 
27
        gcc -MM $(CSRCdv) >>depend
 
28
 
 
29
box$(OBJ):      box.c      bx_types.h bx_read.h dv_all.h version.h
 
30
bx_read$(OBJ):  bx_read.c  bx_types.h bx_read.h
 
31
bx_misc$(OBJ):  bx_misc.c  bx_types.h
 
32
dv_ansi$(OBJ):  dv_ansi.c  bx_types.h bx_read.h dv_all.h
 
33
dv_ascii$(OBJ): dv_ascii.c bx_types.h bx_read.h dv_all.h
 
34
dv_crt$(OBJ):   dv_crt.c   bx_types.h bx_read.h dv_all.h
 
35
dv_fig$(OBJ):   dv_fig.c   bx_types.h bx_read.h dv_all.h
 
36
dv_hpgl$(OBJ):  dv_hpgl.c  bx_types.h bx_read.h dv_all.h
 
37
dv_html$(OBJ):  dv_html.c  bx_types.h bx_read.h dv_all.h version.h
 
38
dv_lj250$(OBJ): dv_lj250.c bx_types.h bx_read.h dv_all.h
 
39
dv_pict$(OBJ):  dv_pict.c  bx_types.h bx_read.h dv_all.h
 
40
dv_ps$(OBJ):    dv_ps.c    bx_types.h bx_read.h dv_all.h version.h
 
41
dv_regis$(OBJ): dv_regis.c bx_types.h bx_read.h dv_all.h
 
42
dv_rtf$(OBJ):   dv_rtf.c   bx_types.h bx_read.h dv_all.h