~ubuntu-branches/ubuntu/trusty/glbsp/trusty

« back to all changes in this revision

Viewing changes to Plugin_w32.mak

  • Committer: Bazaar Package Importer
  • Author(s): Darren Salt
  • Date: 2008-01-30 13:33:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080130133349-kgojg33vyiu8xbvp
Tags: 2.24-1
* New upstream release.
* Bumped the lib soname and the library package name due to one silly
  little binary incompatibility caused by changes in an exported struct.
  (Safe; nothing else currently in the archive has ever used libglbsp2.)
* Removed my patches since they're all applied upstream.
* Updated the list of documentation files.
* Build-time changes:
  - Switched from dh_movefiles to dh_install.
  - Updated my makefile to cope with upstream changes.
  - Corrected for debian-rules-ignores-make-clean-error.
  - Corrected for substvar-source-version-is-deprecated.
  - Link libglbsp, rather than glbsp, with libm and libz.
* Fixed shlibdeps. (Closes: #460387)
* Bumped standards version to 3.7.3 (no other changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# glBSP Plugin: < Win32 + MinGW MAKEFILE >
3
 
#
4
 
# (Note: requires GNU make)
5
 
6
 
 
7
 
# SHELL=bash.exe
8
 
 
9
 
BIN=libglbsp.a
10
 
 
11
 
# INCS=-I../DEV-CPP/include  -Iinclude
12
 
 
13
 
CC=gcc.exe
14
 
CFLAGS=-O2 -Wall -DGLBSP_PLUGIN -DWIN32 -DINLINE_G=inline
15
 
 
16
 
AR=ar r
17
 
RANLIB=ranlib
18
 
 
19
 
# ----- OBJECTS ------------------------------------------------------
20
 
 
21
 
OBJS= \
22
 
    analyze.o \
23
 
    blockmap.o \
24
 
    glbsp.o \
25
 
    level.o \
26
 
    node.o \
27
 
    reject.o \
28
 
    seg.o \
29
 
    system.o \
30
 
    util.o \
31
 
    wad.o
32
 
 
33
 
# ----- TARGETS ------------------------------------------------------
34
 
 
35
 
all: $(BIN)
36
 
 
37
 
clean:
38
 
        rm -f $(OBJS) $(BIN) 
39
 
        
40
 
$(BIN): $(OBJS)
41
 
        $(AR) $(BIN) $(OBJS)
42
 
        $(RANLIB) $(BIN)
43
 
 
44
 
.PHONY: all clean
45