~ubuntu-branches/ubuntu/saucy/wmifs/saucy

« back to all changes in this revision

Viewing changes to wmifs/Makefile

  • Committer: Package Import Robot
  • Author(s): Martin A. Godisch
  • Date: 2013-06-27 21:11:29 UTC
  • mfrom: (4.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20130627211129-vbbr7xr6pyng9zvn
Tags: 1.3b1-22
* Fixed segfault, thanks to The Mayhem Team from Cylab,
  Carnegie Mellon University.
* Updated standards version:
  + added build-arch, build-indep targets to debian/build,
  + added hardening build flags.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
                ../wmgeneral/misc.o \
13
13
                ../wmgeneral/list.o
14
14
 
15
 
CFLAGS = -Wall -O2 -g
 
15
CFLAGS += -Wall -O2 -g
16
16
 
17
17
INSTALL = /usr/bin/install
18
18
INSTALL_DIR     = $(INSTALL) -p -d -o root -g root -m 755
23
23
        $(CC) -c $(CFLAGS) $< -o $*.o
24
24
 
25
25
wmifs: $(OBJS)
26
 
        $(CC) -o wmifs $^ -lXext $(LIBDIR) $(LIBS)
 
26
        $(CC) $(LDFLAGS) -o wmifs $^ -lXext $(LIBDIR) $(LIBS)
27
27
 
28
28
all:: wmifs
29
29