1 |
aw0a |
1 |
# ASCEND Utilities Makefile |
2 |
|
|
# Ben Allan, Karl Westerberg |
3 |
|
|
# January 4, 1994 |
4 |
|
|
|
5 |
|
|
|
6 |
|
|
SHELL = /bin/sh |
7 |
aw0a |
32 |
builddir = .. |
8 |
aw0a |
35 |
srcdir = @fullpathsrcdir@/../generic/utilities |
9 |
ben.allan |
44 |
VPATH := @fullpathsrcdir@/../generic/utilities |
10 |
aw0a |
1 |
|
11 |
|
|
|
12 |
|
|
|
13 |
|
|
# The next variables are the primary executables and/or libraries that |
14 |
|
|
# this makefile is responsible for, and the default target of this |
15 |
|
|
# makefile. |
16 |
|
|
|
17 |
|
|
EXECUTABLE = |
18 |
|
|
|
19 |
johnpye |
141 |
LIBRARY = libascutilities.a |
20 |
aw0a |
1 |
|
21 |
|
|
|
22 |
|
|
default: $(LIBRARY) |
23 |
|
|
|
24 |
|
|
|
25 |
|
|
|
26 |
|
|
# Defines and Includes that are specific to this directory |
27 |
|
|
|
28 |
|
|
DIR_SPECIFIC_DEFS = |
29 |
|
|
DIR_SPECIFIC_INCS = |
30 |
|
|
|
31 |
|
|
|
32 |
|
|
|
33 |
|
|
# The next variables list the source files (EXEC_SCRS) to compile |
34 |
|
|
# into the object files (EXEC_OBJS) that are linked with the |
35 |
|
|
# library files (EXEC_LIBS) to make EXECUTABLE |
36 |
|
|
|
37 |
|
|
EXEC_SRCS = |
38 |
|
|
|
39 |
|
|
EXEC_OBJS = |
40 |
|
|
|
41 |
|
|
EXEC_LIBS = |
42 |
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
|
|
# The next variables list the source files (LIB_SCRS) to compile |
46 |
|
|
# into the object files (LIB_OBJS) that are combined to make LIBRARY |
47 |
|
|
|
48 |
|
|
LIB_SRCS = \ |
49 |
|
|
ascDynaLoad.c ascEnvVar.c ascMalloc.c ascPanic.c \ |
50 |
johnpye |
65 |
ascPrint.c error.c ascSignal.c mem.c readln.c set.c |
51 |
aw0a |
1 |
|
52 |
|
|
LIB_OBJS = \ |
53 |
|
|
ascDynaLoad.o ascEnvVar.o ascMalloc.o ascPanic.o \ |
54 |
johnpye |
65 |
ascPrint.o error.o ascSignal.o mem.o readln.o set.o |
55 |
aw0a |
1 |
|
56 |
|
|
|
57 |
|
|
|
58 |
|
|
# The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) |
59 |
|
|
# |
60 |
|
|
include $(builddir)/ConfigAscend |
61 |
|
|
include $(builddir)/Makefile.Rules |
62 |
|
|
|
63 |
|
|
|
64 |
|
|
|
65 |
|
|
# File specific rules |
66 |
ben.allan |
45 |
# got rid of tcl dependence here. |
67 |
aw0a |
1 |
|
68 |
|
|
|
69 |
|
|
# DO NOT DELETE THIS LINE -- g++dep uses it. |
70 |
|
|
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. |
71 |
|
|
|
72 |
|
|
|
73 |
|
|
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY |