[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r14728: A small stab at a Makefile (torbrowser/trunk/src/RelativeLink)
Author: ioerror
Date: 2008-05-25 04:26:41 -0400 (Sun, 25 May 2008)
New Revision: 14728
Added:
torbrowser/trunk/src/RelativeLink/Makefile
Log:
A small stab at a Makefile
Added: torbrowser/trunk/src/RelativeLink/Makefile
===================================================================
--- torbrowser/trunk/src/RelativeLink/Makefile (rev 0)
+++ torbrowser/trunk/src/RelativeLink/Makefile 2008-05-25 08:26:41 UTC (rev 14728)
@@ -0,0 +1,19 @@
+# A simple Makefile to automate building the RelativeLink program
+APPNAME=StartTorBrowserBundle
+
+all: RelativeLink
+
+RelativeLinkIcon:
+ windres.exe RelativeLink-res.rc RelativeLink-res.rc.o
+
+RelativeLink: RelativeLinkIcon
+ gcc -Wall -mwindows -o $(APPNAME) RelativeLink.c RelativeLink-res.rc.o
+
+clean:
+ rm -rf *.exe
+ rm -rf *.o
+
+.rc.o:
+ windres.exe $^ -o $@
+%.o : %.rc
+ windres.exe $^ -o $@