summaryrefslogtreecommitdiff
path: root/lib/make/make.thornlib
blob: 70dc440b0e5c8714a1de635f81fb45b1ab41098b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# /*@@
#   @file      make.thornlib
#   @date      Sun Jan 17 22:20:45 1999
#   @author    Tom Goodale
#   @desc 
#   Creates the library for a particular thorn
#   @enddesc 
#   @version $Id$
# @@*/

# Silence all but designated output
.SILENT:

# Include the main make definitions for this configuration
include $(CONFIG)/make.config.defn

# Add appropriate include lines
INC_DIRS += $(SRCDIR) $(SRCDIR)/include $(CONFIG) $(CCTK_HOME)/src/include

# Include the thorn's local include data
include $(SRCDIR)/make.code.defn

# Turn source file names into object file names
OBJS = $(patsubst %,%.o,$(basename $(SRCS)))

$(NAME): $(OBJS)
	echo Creating or updating $(NAME)
	$(AR) $(ARFLAGS) $@ $(OBJS)
#	$(RANLIB) $@

# Rules to make the object files
include $(CONFIG)/make.config.rules

# Extra thorn-specific dependencies
include $(SRCDIR)/make.code.deps