diff options
author | Adam Tkac <atkac@redhat.com> | 2008-04-17 16:17:12 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2008-04-17 16:17:12 +0000 |
commit | 81e616ed06b8f72ade348fcd4502efbb3b470297 (patch) | |
tree | 87bcf5cff2d532287e5ea29bee1f8a822cc6fb34 /unix/vncpasswd | |
parent | 932e09b4b9e452cd230fa91f2200d5cb0785e34f (diff) | |
download | tigervnc-81e616ed06b8f72ade348fcd4502efbb3b470297.tar.gz tigervnc-81e616ed06b8f72ade348fcd4502efbb3b470297.zip |
- generate Makefile.in in unix/* subtree from Makefile.am
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/branches/1.5-xserver@2490 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'unix/vncpasswd')
-rw-r--r-- | unix/vncpasswd/Makefile.am | 7 | ||||
-rw-r--r-- | unix/vncpasswd/Makefile.in | 18 |
2 files changed, 7 insertions, 18 deletions
diff --git a/unix/vncpasswd/Makefile.am b/unix/vncpasswd/Makefile.am new file mode 100644 index 00000000..66fdf9d3 --- /dev/null +++ b/unix/vncpasswd/Makefile.am @@ -0,0 +1,7 @@ +bin_PROGRAMS = vncpasswd + +vncpasswd_SOURCES = vncpasswd.cxx + +vncpasswd_CPPFLAGS = -I$(COMMON_DIR) + +vncpasswd_LDADD = $(COMMON_DIR)/rfb/librfb.la diff --git a/unix/vncpasswd/Makefile.in b/unix/vncpasswd/Makefile.in deleted file mode 100644 index a159b726..00000000 --- a/unix/vncpasswd/Makefile.in +++ /dev/null @@ -1,18 +0,0 @@ - -SRCS = vncpasswd.cxx - -OBJS = vncpasswd.o - -program = vncpasswd - -DEP_LIBS = $(COMMON)/rfb/librfb.a - -DIR_CPPFLAGS = -I$(COMMON) - -all:: $(program) - -$(program): $(OBJS) $(DEP_LIBS) - rm -f $(program) - $(CXXLD) $(CXXFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(DEP_LIBS) $(LIBS) - -# followed by boilerplate.mk |