[Pkg-mono-svn-commits] rev 318 - mono-nethostmanager/src

Pablo Fischer pabl0-guest@quantz.debian.org
Sun, 22 Feb 2004 19:21:23 +0100


Author: pabl0-guest
Date: 2004-02-22 19:21:22 +0100 (Sun, 22 Feb 2004)
New Revision: 318

Added:
   mono-nethostmanager/src/Makefile
Log:


Added: mono-nethostmanager/src/Makefile
===================================================================
--- mono-nethostmanager/src/Makefile	2004-02-22 17:49:52 UTC (rev 317)
+++ mono-nethostmanager/src/Makefile	2004-02-22 18:21:22 UTC (rev 318)
@@ -0,0 +1,22 @@
+MCS = mcs
+INSTALL = /usr/bin/install
+prefix = /usr
+NAME = nethostmanager
+ 
+SOURCES = Manager.cs VirtualSchema.cs
+ 
+all: nethostmanager.exe
+ 
+nethostmanager.exe: $(SOURCES) 
+        $(MCS)  -o $@ $(SOURCES) 
+ 
+install: nethostmanager.exe
+        mkdir -p $(prefix)/bin
+        mkdir -p $(prefix)/lib
+        $(INSTALL) -m 755 $(NAME).exe $(prefix)/bin/$(NAME).exe
+ 
+uninstall:
+        -rm $(prefix)/bin/$(NAME).exe
+ 
+clean:
+        -rm $(NAME) *.bak *~