| 1 |
# ASCEND external packages makefile |
| 2 |
# Kirk Abbott, Ben Allan |
| 3 |
# August 26, 1994 |
| 4 |
|
| 5 |
# This file builds the objects from external sources. The |
| 6 |
# ascend interfaces to these objects are currently built |
| 7 |
# in the compiler, though they should probably be built here |
| 8 |
# as well. Since that is the case, this file assumes libpackages.a |
| 9 |
# exists in ../archive and adds the external objects to it. |
| 10 |
# This means this directory should be remade anytime libpackages.a |
| 11 |
# is remade via the compiler. |
| 12 |
# |
| 13 |
# Eventually this should also be the home to the BLAS files that |
| 14 |
# are common to minos, lsode, etc. |
| 15 |
|
| 16 |
|
| 17 |
SHELL = /bin/sh |
| 18 |
builddir = .. |
| 19 |
srcdir = @fullpathsrcdir@/../generic/packages |
| 20 |
VPATH := @fullpathsrcdir@/../generic/packages |
| 21 |
|
| 22 |
|
| 23 |
|
| 24 |
# The next variables are the primary executables and/or libraries that |
| 25 |
# this makefile is responsible for, and the default target of this |
| 26 |
# makefile. |
| 27 |
|
| 28 |
EXECUTABLE = |
| 29 |
|
| 30 |
LIBRARY = libascpackages.a |
| 31 |
|
| 32 |
|
| 33 |
default: $(LIBRARY) |
| 34 |
|
| 35 |
|
| 36 |
|
| 37 |
# Defines and Includes that are specific to this directory |
| 38 |
|
| 39 |
DIR_SPECIFIC_DEFS = $(HAVE_PACKAGES) |
| 40 |
DIR_SPECIFIC_INCS = |
| 41 |
|
| 42 |
|
| 43 |
|
| 44 |
# The next variables list the source files (EXEC_SRCS) to compile |
| 45 |
# into the object files (EXEC_OBJS) that are linked with the |
| 46 |
# library files (EXEC_LIBS) to make EXECUTABLE |
| 47 |
|
| 48 |
EXEC_SRCS = |
| 49 |
|
| 50 |
EXEC_OBJS = |
| 51 |
|
| 52 |
EXEC_LIBS = |
| 53 |
|
| 54 |
|
| 55 |
|
| 56 |
# The next variables list the source files (LIB_SCRS) to compile |
| 57 |
# into the object files (LIB_OBJS) that are combined to make LIBRARY |
| 58 |
|
| 59 |
LIB_OBJS = \ |
| 60 |
bboxtest.o sensitivity.o ascFreeAllVars.o bisect.o kvalues.o |
| 61 |
|
| 62 |
LIB_SRCS = $(LIB_OBJS:%.o=%.c) |
| 63 |
|
| 64 |
|
| 65 |
|
| 66 |
# The global makefile macros (ConfigAscend) and global rules (Makefile.Rules) |
| 67 |
# |
| 68 |
include $(builddir)/ConfigAscend |
| 69 |
include $(builddir)/Makefile.Rules |
| 70 |
|
| 71 |
|
| 72 |
# DO NOT DELETE THIS LINE -- g++dep uses it. |
| 73 |
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. |
| 74 |
|
| 75 |
|
| 76 |
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY |