This file is indexed.

/usr/share/dmake/startup/unix/recipes.mk is in dmake 1:4.12-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
# Define additional UNIX specific build recipes.
#

# Define additional build targets.
%$E : %.sh; cp $< $@; chmod 0777 $@

# This rule tells how to make a non-suffixed executable from its single
# file source.
% : %$O; $(CC) $(LDFLAGS) -o $@ $< $(LDLIBS)

# This rule tells how to make a.out from it's immediate list of prerequisites.
%.out :; $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)

# Process release-specific refinements, if any.
.INCLUDE .NOINFER .IGNORE : $(INCFILENAME:d)$(OSRELEASE)$/recipes.mk