Added files to index. Former-commit-id:e3d3629375
[formerlycf1383a412
] [formerlye3d3629375
[formerlycf1383a412
] [formerlybeae8e7e59
[formerly 874ae116e412c39b73dc3cc74ee3f3a3b02d82f7]]] Former-commit-id:beae8e7e59
Former-commit-id:49dfa99cc5
[formerlye1fc0b48c1
] Former-commit-id:03ad145679
34 lines
806 B
Makefile
Executable file
34 lines
806 B
Makefile
Executable file
.PHONY: $(OBJDIR)
|
|
#################################################################
|
|
# #
|
|
# PLEASE DO NOT MODIFY THIS FILE. #
|
|
# #
|
|
# target.mk #
|
|
# #
|
|
#################################################################
|
|
#
|
|
# `.SUFFIXES:' turns off all default relationships.
|
|
#
|
|
.SUFFIXES:
|
|
|
|
MAKETARGET = $(MAKE) --no-print-directory -C $@ -f $(CURDIR)/GNUmakefile SRCDIR=$(CURDIR) $(MAKECMDGOALS)
|
|
|
|
#
|
|
# Note: The `+' prefix marks those command lines as "recursive" so that
|
|
# they will be executed despite use of the `-t' flag.
|
|
# The `@' prefix suppresses the echoing of that line.
|
|
#
|
|
$(OBJDIR):
|
|
+@[ -d $@ ] || mkdir -p $@
|
|
+@$(MAKETARGET)
|
|
|
|
#
|
|
# Empty target rule so that no attempt is made to 'make' GNUmakefile.
|
|
#
|
|
GNUmakefile: ;
|
|
%.mk :: ;
|
|
% :: $(OBJDIR) ;
|
|
|
|
#
|
|
# End of target.mk
|
|
#
|