diff options
Diffstat (limited to 'libvncauth/Makefile')
-rw-r--r-- | libvncauth/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libvncauth/Makefile b/libvncauth/Makefile new file mode 100644 index 0000000..2781222 --- /dev/null +++ b/libvncauth/Makefile @@ -0,0 +1,9 @@ +OBJS=vncauth.o d3des.o + +CFLAGS=-I. + +all: libvncauth.a + +libvncauth.a: $(OBJS) + $(AR) clq $@ $(OBJS) + |