/usr/share/deal.II/scripts/Makefile is in libdeal.ii-dev 6.3.1-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # $Id: Makefile 20713 2010-02-28 20:54:52Z bangerth $
# Copyright W. Bangerth, 2003
# deal.II top level directory
D=../..
include $D/common/Make.global_options
default: make_dependencies expand_instantiations
# rules to generate the program. let is be dependent on the global flags for
# the following reason: if you go to a different system, but keep with the
# same directory, you get into trouble because make_dependencies is not
# deleted by "make clean"; following this, we generate empty Makefile.dep's
# because we can't run the executable. So better be careful and regenerate
# make_dependencies whenever we think it may be beneficial
make_dependencies : make_dependencies.cc $D/common/Make.global_options
@echo ============================ Compiling $@
@$(CXX) $(CXXFLAGS.o) $(LDFLAGS) $< -o $@
expand_instantiations : expand_instantiations.cc $D/common/Make.global_options
@echo ============================ Compiling $@
@$(CXX) $(CXXFLAGS.o) $(LDFLAGS) $< -o $@
clean:
-rm -f make_dependencies
-rm -f make_dependencies.o
-rm -f expand_instantiations
-rm -f expand_instantiations.o
.PHONY: clean
|