]> git.sesse.net Git - rdpsrv/commitdiff
Add Makefile. (bah)
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 3 Feb 2005 22:24:22 +0000 (22:24 +0000)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 3 Feb 2005 22:24:22 +0000 (22:24 +0000)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..fb58bb3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+all: rdpsrv
+OBJS=rdpsrv.o
+
+rdpsrv: $(OBJS)
+       $(CXX) -o rdpsrv $(OBJS)
+clean:
+       $(RM) $(OBJS) rdpsrv
+
+.PHONY: clean