<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://halfgeek.org/wiki/index.php?action=history&amp;feed=atom&amp;title=Makefile</id>
	<title>Makefile - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://halfgeek.org/wiki/index.php?action=history&amp;feed=atom&amp;title=Makefile"/>
	<link rel="alternate" type="text/html" href="https://halfgeek.org/wiki/index.php?title=Makefile&amp;action=history"/>
	<updated>2026-05-28T12:02:39Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.34.0</generator>
	<entry>
		<id>https://halfgeek.org/wiki/index.php?title=Makefile&amp;diff=2190&amp;oldid=prev</id>
		<title>Psmay: Created page with &quot;See also make.  ==Boilerplate Makefile==  &lt;syntaxhighlight lang=make&gt; BUILD=build MAIN_PRODUCTS = $(BUILD)/product1.dst $(BUILD)/product2.dst  default: $(MAIN_PRODUCTS)  $...&quot;</title>
		<link rel="alternate" type="text/html" href="https://halfgeek.org/wiki/index.php?title=Makefile&amp;diff=2190&amp;oldid=prev"/>
		<updated>2014-05-14T13:16:53Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;See also &lt;a href=&quot;/wiki/Make&quot; title=&quot;Make&quot;&gt;make&lt;/a&gt;.  ==Boilerplate Makefile==  &amp;lt;syntaxhighlight lang=make&amp;gt; BUILD=build MAIN_PRODUCTS = $(BUILD)/product1.dst $(BUILD)/product2.dst  default: $(MAIN_PRODUCTS)  $...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;See also [[make]].&lt;br /&gt;
&lt;br /&gt;
==Boilerplate Makefile==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=make&amp;gt;&lt;br /&gt;
BUILD=build&lt;br /&gt;
MAIN_PRODUCTS = $(BUILD)/product1.dst $(BUILD)/product2.dst&lt;br /&gt;
&lt;br /&gt;
default: $(MAIN_PRODUCTS)&lt;br /&gt;
&lt;br /&gt;
$(BUILD):&lt;br /&gt;
	mkdir -p build&lt;br /&gt;
&lt;br /&gt;
clean:&lt;br /&gt;
	rm -rvf $(BUILD)&lt;br /&gt;
&lt;br /&gt;
$(BUILD)/product1.dst: source1.src | $(BUILD)&lt;br /&gt;
	foofilterprogram &amp;lt;$^ &amp;gt;$@&lt;br /&gt;
&lt;br /&gt;
$(BUILD)/product2.dst: source2.src | $(BUILD)&lt;br /&gt;
	baroutputprogram -o $@ $^&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Psmay</name></author>
		
	</entry>
</feed>