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