1 |
# ASCEND general routines Makefile |
2 |
# Ben Allan, Kirk Abbott |
3 |
# January 4, 1993 |
4 |
# $Revision: 1.10 $ |
5 |
# $Date: 2000/01/25 02:21:23 $ |
6 |
# $Author: ballan $ |
7 |
# $Source: /afs/cs.cmu.edu/project/ascend/Repository/ascend4/general/Makefile.in,v $ |
8 |
# |
9 |
|
10 |
|
11 |
SHELL = /bin/sh |
12 |
builddir = .. |
13 |
srcdir = @srcdir@/../generic |
14 |
VPATH = @srcdir@/../generic |
15 |
|
16 |
|
17 |
|
18 |
# The next variables are the primary executables and/or libraries that |
19 |
# this makefile is responsible for, and the default target of this |
20 |
# makefile. |
21 |
|
22 |
EXECUTABLE = |
23 |
|
24 |
LIBRARY = libgeneral.a |
25 |
|
26 |
|
27 |
default: $(LIBRARY) |
28 |
|
29 |
|
30 |
|
31 |
# Defines and Includes that are specific to this directory |
32 |
|
33 |
DIR_SPECIFIC_DEFS = |
34 |
DIR_SPECIFIC_INCS = |
35 |
|
36 |
|
37 |
|
38 |
# The next variables list the source files (EXEC_SCRS) to compile |
39 |
# into the object files (EXEC_OBJS) that are linked with the |
40 |
# library files (EXEC_LIBS) to make EXECUTABLE |
41 |
|
42 |
EXEC_SRCS = |
43 |
|
44 |
EXEC_OBJS = |
45 |
|
46 |
EXEC_LIBS = |
47 |
|
48 |
|
49 |
|
50 |
# The next variables list the source files (LIB_SCRS) to compile |
51 |
# into the object files (LIB_OBJS) that are combined to make LIBRARY |
52 |
|
53 |
LIB_SRCS = \ |
54 |
dstring.c hashpjw.c list.c listio.c pool.c pretty.c \ |
55 |
stack.c table.c tm_time.c |
56 |
|
57 |
LIB_OBJS = \ |
58 |
dstring.o hashpjw.o list.o listio.o pool.o pretty.o \ |
59 |
stack.o table.o tm_time.o |
60 |
|
61 |
|
62 |
|
63 |
# The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) |
64 |
# |
65 |
include $(builddir)/ConfigAscend |
66 |
include $(builddir)/Makefile.Rules |
67 |
|
68 |
|
69 |
|
70 |
# DO NOT DELETE THIS LINE -- g++dep uses it. |
71 |
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. |
72 |
|
73 |
|
74 |
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY |