~ubuntu-branches/ubuntu/maverick/codelite/maverick

« back to all changes in this revision

Viewing changes to sdk/ctags/mk_ming.mak

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-02-10 02:27:55 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090210022755-m5692nfc1t5uf1w9
Tags: 1.0.2759+dfsg-0ubuntu1
* New upstream release (LP: #327216).
* debian/patches/series, debian/patches/00_fix-ia64-build.patch:
  + Dropped, applied upstream already.
* debian/patches/02_fix-desktop.patch,
  debian/patches/03_fix-sh.patch:
  + Refreshed to patch cleanly.
* debian/rules:
  + Make get-orig-source honour UPSTREAM_VERSION if set.
* debian/ctags-le.1,
  debian/codelite_indexer.1,
  debian/codelite.manpages:
  + Dropped ctags-le manpage, since ctags-le was replaced by
    codelite_indexer.
  + Added codelite_indexer manpage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: mk_ming.mak,v 1.1 2001/11/02 04:53:43 darren Exp $
2
 
#
3
 
# Makefile for Exuberant Ctags under Win32 with Mingw32 compiler
4
 
#
5
 
# Note that only the crtdll variant of the compiler is supported.
6
 
# The msvcrt variant has broken implementations of fgetpos() and fsetpos().
7
 
 
8
 
include source.mak
9
 
 
10
 
CFLAGS = -Wall
11
 
DEFINES = -DWIN32
12
 
CC = gcc
13
 
 
14
 
ctags: ctags.exe
15
 
 
16
 
ctags.exe: OPT = -O4
17
 
ctags.exe: LDFLAGS = -s
18
 
dctags.exe: OPT = -g
19
 
 
20
 
ctags.exe dctags.exe: $(SOURCES)
21
 
        $(CC) $(LDFLAGS) $(OPT) $(CFLAGS) $(DEFINES) -o $@ $(SOURCES)
22
 
 
23
 
clean:
24
 
        - del ctags.exe
25
 
        - del dctags.exe
26
 
        - del tags