~ubuntu-branches/debian/jessie/arcboot/jessie

« back to all changes in this revision

Viewing changes to ext2load/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Julien BLACHE
  • Date: 2006-08-14 11:34:48 UTC
  • mfrom: (2.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20060814113448-q5voixf0wqexnie7
Tags: 0.3.8.8
* Non-Maintainer Upload, with maintainer consent.
* scripts/arcboot:
  + Fix syntax error when $IMAGE isn't found (closes: #329111).
* debian/control:
  + Bumped Standards-Version to 3.7.2 (no changes).
  + Added ${misc:Depends} to arcboot's Depends, to get the debconf
    dependency.
* Added spanish debconf translation, courtesy of César Gómez Martín
  (closes: #333875).
* Added swedish debconf translation, courtesy of Daniel Nylander
  (closes: #331295).
* Fixed po/ja.po Content-Type (seems to be UTF-8 instead of EUC-JP ?)

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
COMMONDIR = ../common
9
9
 
10
 
E2FSLIBDIR = ../e2fslib
11
 
EXT2LIB = $(E2FSLIBDIR)/libext2fs.a
 
10
E2FSINCLUDEDIR ?= /usr/include/ext2fs
 
11
E2FSLIBDIR ?= /usr/lib
 
12
EXT2LIB ?= $(E2FSLIBDIR)/libext2fs-nopic.a
12
13
 
 
14
ARCINCLUDEDIR = ../arclib
13
15
ARCLIBDIR = ../arclib
14
16
ARCLIB = $(ARCLIBDIR)/libarc.a
15
17
 
17
19
LIBS = $(EXT2LIB) $(ARCLIB)
18
20
TARGETS = ext2load 
19
21
 
20
 
CFLAGS = -O2 -I $(COMMONDIR) -I$(ARCLIBDIR) -I$(E2FSLIBDIR)     \
21
 
         -Wall -mno-abicalls -G 0 -fno-pic                      \
 
22
CFLAGS = -O2 -I$(COMMONDIR) -I$(ARCINCLUDEDIR) -I$(E2FSINCLUDEDIR)      \
 
23
         -W -Wall -mno-abicalls -G 0 -fno-pic                           \
22
24
         -DSUBARCH=${SUBARCH}
23
25
 
24
26
# uncomment for debugging