~ubuntu-branches/ubuntu/vivid/gzip/vivid

« back to all changes in this revision

Viewing changes to msdos/Makefile.djg

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-10-19 11:42:42 UTC
  • mfrom: (4.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20111019114242-d8wiiu8kbvdtgmgj
Tags: 1.4-1ubuntu1
* Merge with Debian testing.  Remaining Ubuntu changes:
  - debian/{control,rules}: Remove the Win32 build and mingw64
    build-dependency, since mingw is in universe, and will remain so for
    the forseeable future.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
# This program is free software; you can redistribute it and/or modify
6
6
# it under the terms of the GNU General Public License as published by
7
 
# the Free Software Foundation; either version 2, or (at your option)
 
7
# the Free Software Foundation; either version 3, or (at your option)
8
8
# any later version.
9
9
 
10
10
# This program is distributed in the hope that it will be useful,
16
16
# along with this program; if not, write to the Free Software
17
17
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
18
 
19
 
# $Id: Makefile.djg,v 1.3 1993/06/22 15:43:24 jloup Exp $
20
 
 
21
19
#### Start of system configuration section. ####
22
20
 
23
21
.SUFFIXES: .o
168
166
        aout2exe gzip
169
167
 
170
168
gzip:   $(OBJ1) $(OBJ2)
171
 
        echo $(OBJ1) > gzip.rsp
172
 
        echo $(OBJ2) $(LIBS) >> gzip.rsp
 
169
        echo $(OBJ1) > gzip.rsp
 
170
        echo $(OBJ2) $(LIBS) >> gzip.rsp
173
171
        $(CC) $(LDFLAGS) -o $@ @gzip.rsp
174
172
        del gzip.rsp
175
173