-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (23 loc) · 859 Bytes
/
Makefile
File metadata and controls
37 lines (23 loc) · 859 Bytes
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
OBJS = parm_reduction.o A1OUT.o NLP.o NLP_u.o PHARM.o \
interval_math.o readtoken.o read_data.o deblank.o tasle.o
CFLAGS = -Wall
LDFLAGS = -o parm_reduction -lm
CC = gcc
parm_reduction : $(OBJS)
$(CC) $(OBJS) $(LDFLAGS)
parm_reduction.o : parm_reduction.h parm_red_structs.h\
parm_red_discr_sets.h parm_red_models.h \
readtoken.h read_data.h tasle.h interval_math.h
interval_math.o : interval_math.h parm_red_structs.h
A1OUT.o : parm_red_structs.h readtoken.h
PHARM.o : parm_red_structs.h readtoken.h
NLP.o : parm_red_structs.h interval_math.h readtoken.h
NLP_u.o : parm_red_structs.h interval_math.h readtoken.h
readtoken.o : readtoken.h
read_data.o : read_data.h
deblank.o : deblank.h
tasle.o : tasle.h
discr_error_test : parm_red_structs.h parm_reduction.h discr_error_test.h
.PHONY : clean
clean :
-rm $(OBJS)