From 1d44bdf37a2af16e3c02b8a50618832f8d21ba6a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 10 Feb 2007 23:34:30 +0000 Subject: [PATCH] added makefile for build tool --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40469 --- tools/builder/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tools/builder/Makefile diff --git a/tools/builder/Makefile b/tools/builder/Makefile new file mode 100644 index 00000000..767b444f --- /dev/null +++ b/tools/builder/Makefile @@ -0,0 +1,15 @@ +CS = /usr/mono/bin/mcs +NAME = builder +BINARY = $(NAME).exe + +OBJECTS = ABuilder.cs AssemblyInfo.cs Config.cs LinuxBuilder.cs Win32Builder.cs \ + Package.cs PkgCore.cs Main.cs + +default: all + +all: $(OBJECTS) + $(CS) $(OBJECTS) -o $(BINARY) + +clean: + rm -rf $(BINARY) +