Former-commit-id:fda897d2d0
[formerly253e8bc948
] [formerly295cbf95e5
[formerly 0816cd253c86acc699cb90866131619c4679f631]] Former-commit-id:295cbf95e5
Former-commit-id:ae3d17c698
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
|
|
#
|