Former-commit-id:4bfbdad17d
[formerly9f8cb727a5
] [formerly4bfbdad17d
[formerly9f8cb727a5
] [formerly8485b90ff8
[formerly bf53d06834caa780226121334ac1bcf0534c3f16]]] Former-commit-id:8485b90ff8
Former-commit-id:33a67cdd82
[formerlya28d70b5c5
] Former-commit-id:e5543a0e86
34 lines
806 B
Makefile
34 lines
806 B
Makefile
.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
|
|
#
|