1 |
# ASCEND bin Directory Makefile |
2 |
# Dummy Makefile to force configure to make this directory |
3 |
# Mark Thomas |
4 |
# May 28, 1996 |
5 |
|
6 |
|
7 |
SHELL = /bin/sh |
8 |
builddir = .. |
9 |
srcdir = @fullpathsrcdir@/../generic/bin |
10 |
VPATH := @fullpathsrcdir@/../generic/bin |
11 |
|
12 |
|
13 |
|
14 |
# The next variables are the primary executables and/or libraries that |
15 |
# this makefile is responsible for, and the default target of this |
16 |
# makefile. |
17 |
|
18 |
EXECUTABLE = |
19 |
|
20 |
LIBRARY = none |
21 |
|
22 |
|
23 |
default: |
24 |
|
25 |
|
26 |
|
27 |
# Defines and Includes that are specific to this directory |
28 |
|
29 |
DIR_SPECIFIC_DEFS = |
30 |
DIR_SPECIFIC_INCS = |
31 |
|
32 |
|
33 |
|
34 |
# The next variables list the source files (EXEC_SCRS) to compile |
35 |
# into the object files (EXEC_OBJS) that are linked with the |
36 |
# library files (EXEC_LIBS) to make EXECUTABLE |
37 |
|
38 |
EXEC_SRCS = |
39 |
|
40 |
EXEC_OBJS = |
41 |
|
42 |
EXEC_LIBS = |
43 |
|
44 |
|
45 |
|
46 |
# The next variables list the source files (LIB_SCRS) to compile |
47 |
# into the object files (LIB_OBJS) that are combined to make LIBRARY |
48 |
|
49 |
LIB_SRCS = |
50 |
|
51 |
LIB_OBJS = |
52 |
|
53 |
|
54 |
|
55 |
# The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) |
56 |
# |
57 |
include $(builddir)/ConfigAscend |
58 |
include $(builddir)/Makefile.Rules |
59 |
|
60 |
|
61 |
|
62 |
# DO NOT DELETE THIS LINE -- g++dep uses it. |
63 |
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. |
64 |
|
65 |
|
66 |
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY |