21 lines
730 B
Plaintext
21 lines
730 B
Plaintext
# $Id: common_kernel.gmk,v 1.3 2001/06/21 17:48:33 morita Exp $
|
|
# ----------------------------------------------------------------
|
|
# Common part of GNUmakefile for libraries. John Allison, 5/7/95.
|
|
# ----------------------------------------------------------------
|
|
# Splitted from common.gmk for transient part of G4. Y.Morita, 15/3/01.
|
|
|
|
$(G4TMPDIR)/%.o: src/%.cc
|
|
ifdef CPPVERBOSE
|
|
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $(OUT_OBJ)$(G4TMPDIR)/$(*F).o src/$*.cc
|
|
else
|
|
@echo Compiling $*.cc ...
|
|
@$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $(OUT_OBJ)$(G4TMPDIR)/$(*F).o src/$*.cc
|
|
endif
|
|
|
|
# .PHONY targets are executed regardless of time-stamp of any file of
|
|
# same name.
|
|
.PHONY: all obj lib clean clean_libs includes
|
|
|
|
obj: $(G4TMPDIR)/obj.last
|
|
|