Makefile

Sat, 29 Apr 2000 15:35:45 +0200

author
tuomov
date
Sat, 29 Apr 2000 15:35:45 +0200
changeset 9
55e7f2ff6021
parent 8
c1994196683f
child 10
ab335fe0d26d
permissions
-rw-r--r--

trunk: changeset 12
Changed the copyright notice in headers

3
b1fbfab67908 trunk: changeset 6
tuomov
parents: 1
diff changeset
1 ##
b1fbfab67908 trunk: changeset 6
tuomov
parents: 1
diff changeset
2 ## libtu Makefile
b1fbfab67908 trunk: changeset 6
tuomov
parents: 1
diff changeset
3 ##
0
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
4
3
b1fbfab67908 trunk: changeset 6
tuomov
parents: 1
diff changeset
5 # System-specific configuration is in system.mk
b1fbfab67908 trunk: changeset 6
tuomov
parents: 1
diff changeset
6 include system.mk
0
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
7
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
8 ######################################
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
9
5
f878a9ffa3e0 trunk: changeset 8
tuomov
parents: 3
diff changeset
10 INCLUDES += -I./include
f878a9ffa3e0 trunk: changeset 8
tuomov
parents: 3
diff changeset
11
0
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
12 OBJS= misc.o output.o util.o optparser.o parser.o tokenizer.o
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
13
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
14 LIBDIR=$(PREFIX)/lib
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
15 INCDIR=$(PREFIX)/include/libtu
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
16
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
17 TARGETS=libtu.a
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
18 TESTERS=tester tester2 tester3
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
19
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
20 ######################################
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
21
3
b1fbfab67908 trunk: changeset 6
tuomov
parents: 1
diff changeset
22 include rules.mk
b1fbfab67908 trunk: changeset 6
tuomov
parents: 1
diff changeset
23
b1fbfab67908 trunk: changeset 6
tuomov
parents: 1
diff changeset
24 ######################################
0
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
25
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
26 testers: $(TESTERS)
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
27
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
28 libtu.a: $(OBJS)
9
55e7f2ff6021 trunk: changeset 12
tuomov
parents: 8
diff changeset
29 $(AR) $(ARFLAGS) $@ $+
0
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
30
8
c1994196683f trunk: changeset 11
tuomov
parents: 5
diff changeset
31 tester: tester.c libtu.a
9
55e7f2ff6021 trunk: changeset 12
tuomov
parents: 8
diff changeset
32 $(CC) $(CFLAGS) $< -L. -ltu -lm -o $@
8
c1994196683f trunk: changeset 11
tuomov
parents: 5
diff changeset
33
c1994196683f trunk: changeset 11
tuomov
parents: 5
diff changeset
34 tester2: tester2.c libtu.a
9
55e7f2ff6021 trunk: changeset 12
tuomov
parents: 8
diff changeset
35 $(CC) $(CFLAGS) $< -L. -ltu -lm -o $@
8
c1994196683f trunk: changeset 11
tuomov
parents: 5
diff changeset
36
c1994196683f trunk: changeset 11
tuomov
parents: 5
diff changeset
37 tester3: tester3.c libtu.a
9
55e7f2ff6021 trunk: changeset 12
tuomov
parents: 8
diff changeset
38 $(CC) $(CFLAGS) $< -L. -ltu -lm -o $@
0
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
39
3
b1fbfab67908 trunk: changeset 6
tuomov
parents: 1
diff changeset
40 _install:
0
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
41 $(INSTALL) -d $(LIBDIR)
86b7f6f9c5c0 Tailorization of trunk
tailor@f281.ttorni.ton.tut.fi
parents:
diff changeset
42 $(INSTALL) -d $(INCDIR)
3
b1fbfab67908 trunk: changeset 6
tuomov
parents: 1
diff changeset
43 $(INSTALL) -m $(DATA_MODE) libtu.a $(LIBDIR)
8
c1994196683f trunk: changeset 11
tuomov
parents: 5
diff changeset
44 for i in include/libtu/*.h; do \
c1994196683f trunk: changeset 11
tuomov
parents: 5
diff changeset
45 $(INSTALL) -m $(DATA_MODE) $$i $(INCDIR); \
c1994196683f trunk: changeset 11
tuomov
parents: 5
diff changeset
46 done

mercurial