diff options
Diffstat (limited to 'vncpasswd/Makefile.in')
-rw-r--r-- | vncpasswd/Makefile.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/vncpasswd/Makefile.in b/vncpasswd/Makefile.in new file mode 100644 index 00000000..fb625e0b --- /dev/null +++ b/vncpasswd/Makefile.in @@ -0,0 +1,18 @@ + +SRCS = vncpasswd.cxx + +OBJS = vncpasswd.o + +program = vncpasswd + +DEP_LIBS = ../rfb/librfb.a # ../network/libnetwork.a ../rdr/librdr.a + +DIR_CPPFLAGS = -I$(top_srcdir) + +all:: $(program) + +$(program): $(OBJS) $(DEP_LIBS) + rm -f $(program) + $(CXXLD) $(CXXFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(DEP_LIBS) $(LIBS) + +# followed by boilerplate.mk |