~ubuntu-branches/ubuntu/gutsy/pkg-create-dbgsym/gutsy-updates

« back to all changes in this revision

Viewing changes to dhtest.archspecific/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2007-04-03 10:58:17 UTC
  • Revision ID: james.westby@ubuntu.com-20070403105817-8gr6x57jupwe4ve8
Tags: 0.20
* Move test suite into tests/ to unclutter source root directory.
* Add tests/dhtest.versionoverride: Test case for overriding the version of
  a particular binary. This replicates LP #92747. However, since this is
  unfixable without major changes (dh_strip is called before dh_gencontrol
  usually), we do not run the test case for now.
* pkg_create_dbgsym: Do not generate conflicts to python dbg packages.
  (LP: #88695)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CFLAGS= -g -Wall -W -O0
2
 
 
3
 
LIBNAME=crashrep
4
 
 
5
 
all: crash crash2
6
 
 
7
 
crash: crash.o
8
 
        $(CC) $^ -o $@
9
 
 
10
 
crash2: crash2.o
11
 
        $(CC) $^ -o $@
12
 
 
13
 
clean:
14
 
        rm -f *.o crash crash2
15
 
 
16
 
install: all
17
 
        install -d $(DESTDIR)/usr/bin
18
 
        install crash crash2 $(DESTDIR)/usr/bin