~ubuntu-branches/ubuntu/precise/p7zip/precise-updates

« back to all changes in this revision

Viewing changes to makefile.djgpp

  • Committer: Bazaar Package Importer
  • Author(s): Mohammed Adnène Trojette
  • Date: 2009-02-14 20:12:27 UTC
  • mfrom: (1.1.11 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090214201227-go63qxm9ozfdma60
Tags: 4.65~dfsg.1-1
* New upstream release.
* Remove wx2.8 Build-Depends added by mistakes (7zG is not yet
  intended to be built).
* Use dh_clean without -k.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# makefile for DJGPP
3
 
# (available target for DJGPP : all test clean)
4
 
#
5
 
 
6
 
OPTFLAGS=-O
7
 
 
8
 
ALLFLAGS=${OPTFLAGS} -s \
9
 
        -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \
10
 
        -DNDEBUG -D_REENTRANT -DENV_UNIX \
11
 
        $(LOCAL_FLAGS)
12
 
 
13
 
CXX=gpp $(ALLFLAGS)
14
 
CC=gcc $(ALLFLAGS)
15
 
LINK_SHARED=-shared
16
 
 
17
 
LOCAL_LIBS=-lpthread -lsocket
18
 
LOCAL_LIBS_DLL=$(LOCAL_LIBS)
19
 
 
20
 
OBJ_CRC32=$(OBJ_CRC32_C)
21