awips2/ncep/gov.noaa.nws.ncep.viz.rsc.ncgrid/dgdriv_c/target.mk
Roger Ferrel 57bc02d754 Issue #181
Added files to index.


Former-commit-id: e3d3629375 [formerly cf1383a412] [formerly e3d3629375 [formerly cf1383a412] [formerly beae8e7e59 [formerly 874ae116e412c39b73dc3cc74ee3f3a3b02d82f7]]]
Former-commit-id: beae8e7e59
Former-commit-id: 49dfa99cc5 [formerly e1fc0b48c1]
Former-commit-id: 03ad145679
2012-01-26 15:05:25 -06:00

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
#