-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
57 lines (52 loc) · 1.48 KB
/
Makefile
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
#
# File: Makefile (for library)
#
CC=g++
INC1=./MathParseKit/include
INCDIRS= -I${INC1}
LDFLAGS=-lm
CFLAGS=${INCDIRS}
LIB=MathParseKit.a
LIBDEST=./
LIBSRC= ./MathParseKit/src/MFAbs.cpp \
./MathParseKit/src/MFAcos.cpp \
./MathParseKit/src/MFAcotan.cpp \
./MathParseKit/src/MFAdd.cpp \
./MathParseKit/src/MFAsin.cpp \
./MathParseKit/src/MFAtan.cpp \
./MathParseKit/src/MFConst.cpp \
./MathParseKit/src/MFCos.cpp \
./MathParseKit/src/MFCosh.cpp \
./MathParseKit/src/MFCoTan.cpp \
./MathParseKit/src/MFCoTanh.cpp \
./MathParseKit/src/MFDiv.cpp \
./MathParseKit/src/MFExp.cpp \
./MathParseKit/src/MFLn.cpp \
./MathParseKit/src/MFLog10.cpp \
./MathParseKit/src/MFLog.cpp \
./MathParseKit/src/MFMul.cpp \
./MathParseKit/src/MFOpp.cpp \
./MathParseKit/src/MFPow.cpp \
./MathParseKit/src/MFSign.cpp \
./MathParseKit/src/MFSin.cpp \
./MathParseKit/src/MFSinh.cpp \
./MathParseKit/src/MFSqrt.cpp \
./MathParseKit/src/MFSub.cpp \
./MathParseKit/src/MFTan.cpp \
./MathParseKit/src/MFTanh.cpp \
./MathParseKit/src/MFVar.cpp \
./MathParseKit/src/MParser.cpp \
./MathParseKit/src/MRelation.cpp \
./MathParseKit/src/MSistem.cpp \
./MathParseKit/src/MVariableElement.cpp \
./MathParseKit/src/MVariablesList.cpp
LIBOBJ=$(LIBSRC:.cpp=.o)
all: $(LIB)
#@echo lib Makefile - installing $(LIB)
#@install -m 444 $(LIB) $(LIBDEST)
$(LIB): $(LIBOBJ)
@echo lib Makefile - archiving $(LIB)
@$(AR) -cvq $(LIB) $(LIBOBJ)
.cpp.o:
@echo lib Makefile - compiling $<
@$(CC) $(CFLAGS) -c $< -o $@ $(LDFLAGS)