1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# $Id: descrip.mms 2 2001-11-02 04:53:43Z darren $
#
# Makefile for building CTAGS under OpenVMS
#
# Maintained by by Zoltan Arpadffy <arpadffy@altavista.net>
#
# Edit the lines in the Configuration section below to select.
######################################################################
# Configuration section.
######################################################################
# Compiler selection.
# Comment out if you use the VAXC compiler
######################################################################
DECC = YES
######################################################################
# Uncomment if want a debug version. Resulting executable is DCTAGS.EXE
######################################################################
# DEBUG = YES
######################################################################
# End of configuration section.
#
# Please, do not change anything below without programming experience.
######################################################################
CC = cc
.IFDEF DECC
CC_DEF = $(CC)/decc/prefix=all
.ELSE
CC_DEF = $(CC)
.ENDIF
LD_DEF = link
.IFDEF DEBUG
TARGET = dctags.exe
CFLAGS = /debug/noopt/list/cross_reference/include=[]
LDFLAGS = /debug
.ELSE
TARGET = ctags.exe
CFLAGS = /include=[]
LDFLAGS =
.ENDIF
OBJEXT = obj
.SUFFIXES : .obj .c
.INCLUDE source.mak
EXTRA_OBJS = argproc.obj
all : $(TARGET)
! $@
.c.obj :
$(CC_DEF) $(CFLAGS) $<
$(TARGET) : $(OBJECTS) $(EXTRA_OBJS)
$(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+
clean :
-@ if F$SEARCH("*.obj") .NES. "" then delete/noconfirm/nolog *.obj.*
-@ if F$SEARCH("*.exe") .NES. "" then delete/noconfirm/nolog *.exe.*
-@ if F$SEARCH("config.h") .NES. "" then delete/noconfirm/nolog config.h.*
|