Plan 9 from Bell Labs’s /usr/web/sources/contrib/anothy/src/ctags/mk_ming.mak

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


# $Id: mk_ming.mak 2 2001-11-02 04:53:43Z darren $
#
# Makefile for Exuberant Ctags under Win32 with Mingw32 compiler
#
# Note that only the crtdll variant of the compiler is supported.
# The msvcrt variant has broken implementations of fgetpos() and fsetpos().

include source.mak

CFLAGS = -Wall
DEFINES = -DWIN32
CC = gcc

ctags: ctags.exe

ctags.exe: OPT = -O4
ctags.exe: LDFLAGS = -s
dctags.exe: OPT = -g

ctags.exe dctags.exe: $(SOURCES)
	$(CC) $(LDFLAGS) $(OPT) $(CFLAGS) $(DEFINES) -o $@ $(SOURCES)

clean:
	- del ctags.exe
	- del dctags.exe
	- del tags

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.