Annotation of capa/capa51/pProj/Makefile, revision 1.20
1.1 albertel 1: # ==================================================================
2: # Makefile for CAPA 5.1
3: # ==================================================================
1.7 albertel 4: # Copyright (C) 1992-2000 Michigan State University
5: #
6: # The CAPA system is free software; you can redistribute it and/or
1.13 albertel 7: # modify it under the terms of the GNU General Public License as
1.7 albertel 8: # published by the Free Software Foundation; either version 2 of the
9: # License, or (at your option) any later version.
10: #
11: # The CAPA system is distributed in the hope that it will be useful,
12: # but WITHOUT ANY WARRANTY; without even the implied warranty of
13: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1.13 albertel 14: # General Public License for more details.
1.7 albertel 15: #
1.13 albertel 16: # You should have received a copy of the GNU General Public
1.7 albertel 17: # License along with the CAPA system; see the file COPYING. If not,
18: # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
1.10 albertel 19: #
1.7 albertel 20: # Boston, MA 02111-1307, USA.
1.10 albertel 21: # As a special exception, you have permission to link this program
22: # with the TtH/TtM library and distribute executables, as long as you
23: # follow the requirements of the GNU GPL in regard to all of the
24: # software in the executable aside from TtH/TtM.
25:
1.7 albertel 26:
1.1 albertel 27:
28: VER = 5.1
1.20 ! albertel 29: BUGFIX = 5
1.1 albertel 30: #CC = i486-linuxlibc1-gcc -DCAPA_VER=\"$(VER).$(BUGFIX)\" -DCOMPILE_DATE=\"`date +'%b-%d-%Y'`\"
1.2 albertel 31: CC = cc -DCAPA_VER=\"$(VER).$(BUGFIX)\" -DCOMPILE_DATE=\"`date +'%b-%d-%Y-%H:%M'`\"
1.6 albertel 32: DEF = -DUSE_DYNAMIC_SYMBOLS $(TTH_DEF) #-DLEX_DBUG
33: LEX = flex -Cfa -s
1.1 albertel 34: YACC = bison
35: AR = ar
36: MV = mv
37: RM = rm
38: STRIP = echo
39: #STRIP = strip
40: LEXFLAG = -v
41:
42: # OSF1, SunOS, Linux, NEXTSTEP, HP-UX, IRIX
43:
1.9 albertel 44: TTH_SRC=
45: #TTH_SRC=../../tth/tthdynamic/tthfunc.c
46: TTH_OBJ=
47: #TTH_OBJ=$(ARCH)/tthfunc.o
48: TTH_DEF=
49: #TTH_DEF=-DTTH
1.6 albertel 50:
1.1 albertel 51: ARCH = $(shell uname)
1.18 albertel 52: LONCAPA =
1.6 albertel 53: Linux = /usr/lib/libncurses.a
1.1 albertel 54: OSF1 = -lcurses #-ltermcap
55: SunOS = /home/capa/source/lib/libncurses.a
1.4 albertel 56: Linux = /usr/lib/libncurses.a
1.1 albertel 57: NEXTSTEP = -lcurses -ltermcap
58: HP-UX = -lcurses -ltermcap
59: IRIX = -lcurses -ltermcap
60: FreeBSD = -lncurses -ltermcap
61:
1.6 albertel 62: P_FLAGS = -ll -lm
1.1 albertel 63:
64: S_FLAGS = $($(ARCH)) $(P_FLAGS)
65:
1.18 albertel 66: LONCAPAFLAG = -DLONCAPA -fPIC -Dbool=char -DHAS_BOOL -D_REENTRANT
1.1 albertel 67: OSF1FLAG = -O3 -Olimit 2048
1.6 albertel 68: AIXFLAG=-O3 -DAIX $(DEF)
69: NEXTSTEPFLAG=-arch i386 -arch m68k $(DEF)
70: SunOSFLAG=-xO3 $(DEF)
71: HP-UXFLAG=-O -Ae -Dhpux $(DEF)
72: IRIXFLAG=-O2 -DIRIX $(DEF)
1.12 albertel 73: LinuxFLAG=-O2 -Wall $(DEF)
1.6 albertel 74:
75: CFLAG=$($(ARCH)FLAG)
76:
1.7 albertel 77: PAR_SRC = capaLexerFun.c capaParserFun.c capaFormulaParser.c capaFunction.c \
1.6 albertel 78: capaParserUtils.c capaMapExpr.c capaUnit.c com.c linpack.c ranlib.c \
79: capaCgiUtils.c capaSubjective.c capaRQO.c capaFormulaLexer.c \
1.7 albertel 80: capaFormulaParser.c capaCommon.c $(TTH_SRC)
1.1 albertel 81:
82: PAR_OBJ = $(PAR_SRC:.c=.o)
83:
1.7 albertel 84: ARCH_OBJ = $(ARCH)/capaFormulaParser.o $(ARCH)/capaLexerFun.o $(ARCH)/capaParserFun.o \
1.6 albertel 85: $(ARCH)/capaFunction.o $(ARCH)/capaParserUtils.o $(ARCH)/capaMapExpr.o \
86: $(ARCH)/capaUnit.o $(ARCH)/com.o $(ARCH)/linpack.o $(ARCH)/ranlib.o \
87: $(ARCH)/capaCgiUtils.o $(ARCH)/capaSubjective.o $(ARCH)/capaRQO.o \
1.7 albertel 88: $(ARCH)/capaFormulaLexer.o $(ARCH)/capaCommon.o $(TTH_OBJ)
1.1 albertel 89: ## ===================================================================
90:
91: # conditional macros in alpha
92: #
93: # libcapa:=MACRO=string
94:
95:
1.6 albertel 96: all: $(ARCH) $(ARCH)/libcapa$(VER).a $(ARCH)/qzparse $(ARCH)/capalogin $(ARCH)/capahtml $(ARCH)/capasbin $(ARCH)/allcapaid
97:
98: $(ARCH):
99: mkdir $(ARCH)
1.1 albertel 100:
101: dmalloc:
1.6 albertel 102: $(MAKE) DEF="-DDMALLOC -DDMALLOC_FUNC_CHECK $(DEF)" P_FLAGS="-ldmalloc $(P_FLAGS)" libcapa capasbin
103:
104: libcapa: $(ARCH)/libcapa$(VER).a
105:
106: $(ARCH)/capalogin: $(ARCH)/capalogin.o $(ARCH)/libcapa$(VER).a
107: $(CC) $(CFLAG) -o $@ $^ $(S_FLAGS)
108:
109: capalogin: $(ARCH)/capalogin
110: true
1.1 albertel 111:
1.6 albertel 112: $(ARCH)/capahtml: capaHTML.c $(ARCH)/libcapa$(VER).a
113: $(CC) $(CFLAG) -o $@ $< $(ARCH)/libcapa$(VER).a $(P_FLAGS)
1.1 albertel 114:
1.6 albertel 115: capahtml: $(ARCH)/capahtml
116: true
117:
118: $(ARCH)/capasbin: capaHTML.c $(ARCH)/libcapa$(VER).a
119: $(CC) $(CFLAG) -o $@ $< -DCAPA_WEB $(ARCH)/libcapa$(VER).a $(P_FLAGS)
120:
121: capasbin: $(ARCH)/capasbin
122: true
123:
124: $(ARCH)/allcapaid: allcapaid.c $(ARCH)/libcapa$(VER).a
125: $(CC) $(CFLAG) -o $@ $< $(ARCH)/libcapa$(VER).a $(P_FLAGS)
126:
127: allcapaid: $(ARCH)/allcapaid
128: true
129:
130: $(ARCH)/qzparse: qzparse.c $(ARCH)/libcapa$(VER).a
131: $(CC) $(CFLAG) -o $@ $< $(ARCH)/libcapa$(VER).a $(P_FLAGS)
132:
133: qzparse: $(ARCH)/qzparse
134: true
135:
1.19 albertel 136: $(ARCH)/libcapa$(VER).a: $(ARCH) $(ARCH_OBJ) $(PAR_SRC)
1.6 albertel 137: $(AR) r $(ARCH)/libcapa$(VER).a $(ARCH_OBJ)
1.1 albertel 138:
139: binclean:
140: $(RM) $(ARCH)/*.o $(ARCH)/*.a
141:
1.7 albertel 142: $(ARCH)/%.o: %.c capaToken.h
1.6 albertel 143: $(CC) $(CFLAG) -c $< -o $@ $(DEF)
144:
145: $(ARCH)/tthfunc.o: $(TTH_SRC)
146: $(CC) $(CFLAG) -c $< -o $@ $(DEF)
147:
148: $(ARCH)/convert: $(ARCH)libcapa($VER).a $(ARCH)/convert.o
149: $(CC) $(CFLAG) $(DEF) -o $@ $(ARCH)/convert.o -L$(ARCH) -lcapa$(VER) $(P_FLAGS)
150:
1.7 albertel 151: capaToken.h: capaGrammarDef.y
1.8 albertel 152: $(YACC) -d $< --output=capaParserFun.c
1.7 albertel 153: mv capaParserFun.h capaToken.h
154:
155: capaForumla.h: capaFormula.y
156: $(YACC) -d $< -p fml_ --output=$@
157: mv capaFormulaParser.h capaFormula.h
1.1 albertel 158:
1.6 albertel 159: capaParserFun.c: capaGrammarDef.y
160: $(YACC) -d $< --output=$@
161: mv capaParserFun.h capaToken.h
1.1 albertel 162:
1.6 albertel 163: capaLexerFun.c: capaLexerDef.flex capaToken.h
164: $(LEX) -o$@ $<
1.1 albertel 165:
1.6 albertel 166: capaFormulaParser.c: capaFormula.y
167: $(YACC) -d $< -p fml_ --output=$@
1.7 albertel 168: mv capaFormulaParser.h capaFormula.h
1.1 albertel 169:
1.6 albertel 170: clean:
171: rm -f $(ARCH)/*.o
172: rm -f $(ARCH)/libcapa$(VER).a
1.7 albertel 173: rm -f capaToken.h capaParserFun.c capaLexerFun.c capaFormula.h \
174: capaFormulaParser.c
1.1 albertel 175:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>