Files
ecoprimers/src/libthermo/Makefile
T

24 lines
277 B
Makefile
Raw Normal View History

2009-07-07 12:35:17 +00:00
SOURCES = nnparams.c \
2009-07-18 22:16:18 +00:00
thermostats.c
2009-07-07 12:35:17 +00:00
SRCS=$(SOURCES)
OBJECTS= $(patsubst %.c,%.o,$(SOURCES))
LIBFILE= libthermo.a
RANLIB= ranlib
include ../global.mk
all: $(LIBFILE)
clean:
rm -rf $(OBJECTS) $(LIBFILE)
$(LIBFILE): $(OBJECTS)
ar -cr $@ $?
$(RANLIB) $@