~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to unix/tx/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Generated automatically from Makefile.in:boilerplate.mk by configure.
2
 
COMMON = ../../common
3
 
TOP = ..
4
 
 
5
 
SRCS = TXWindow.cxx TXScrollbar.cxx TXViewport.cxx TXImage.cxx TXMenu.cxx
6
 
 
7
 
OBJS = $(SRCS:.cxx=.o)
8
 
 
9
 
DIR_CPPFLAGS = -I$(COMMON)  # X_CFLAGS are really CPPFLAGS
10
 
 
11
 
library = libtx.a
12
 
 
13
 
all:: $(library)
14
 
 
15
 
$(library): $(OBJS)
16
 
        rm -f $(library)
17
 
        $(AR) $(library) $(OBJS)
18
 
        $(RANLIB) $(library)
19
 
 
20
 
# followed by boilerplate.mk
21
 
 
22
 
all::
23
 
        @subdirs="$(SUBDIRS)"; for d in $$subdirs; do (cd $$d; $(MAKE) $@) || exit 1; done
24
 
 
25
 
clean::
26
 
        @subdirs="$(SUBDIRS)"; for d in $$subdirs; do (cd $$d; $(MAKE) $@) || exit 1; done
27
 
 
28
 
clean::
29
 
        rm -f $(program) $(library) *.o
30
 
 
31
 
SHELL = /bin/sh
32
 
top_srcdir = ..
33
 
 
34
 
CC = gcc
35
 
CFLAGS = -Wall -g -O2 -Wall $(DIR_CFLAGS)
36
 
CCLD = $(CC)
37
 
CXX = c++
38
 
CXXFLAGS = -O2 -Wall $(DIR_CXXFLAGS)
39
 
CXXLD = $(CXX)
40
 
CPPFLAGS = 
41
 
DEFS =  
42
 
ALL_CPPFLAGS = $(CPPFLAGS) $(DEFS) $(DIR_CPPFLAGS)
43
 
LIBS = 
44
 
LDFLAGS = 
45
 
RANLIB = ranlib
46
 
AR = ar cq
47
 
 
48
 
.SUFFIXES:
49
 
.SUFFIXES: .cxx .c .o
50
 
 
51
 
.c.o:
52
 
        $(CC) $(ALL_CPPFLAGS) $(CFLAGS) -c $<
53
 
 
54
 
.cxx.o:
55
 
        $(CXX) $(ALL_CPPFLAGS) $(CXXFLAGS) -c $<