~ubuntu-branches/ubuntu/raring/joystick/raring

« back to all changes in this revision

Viewing changes to utils/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Potyra
  • Date: 2010-12-13 23:10:53 UTC
  • Revision ID: james.westby@ubuntu.com-20101213231053-355cq1ck84yaqpe5
Tags: 20051019-12ubuntu1
debian/patches/fix-as-needed.patch: Change linking order to
fix FTBFS with --as-needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
        $(RM) *.o *.swp $(PROGRAMS) *.orig *.rej map *~
42
42
 
43
43
ffcfstress: ffcfstress.c
44
 
        $(CC) -O2 -funsigned-char -lm ffcfstress.c -o ffcfstress
 
44
        $(CC) -O2 -funsigned-char ffcfstress.c -lm -o ffcfstress
45
45
 
46
46
ffmvforce.o: ffmvforce.c
47
47
        $(CC) -c $(CFLAGS) $(CPPFLAGS) $^ -o $@ `sdl-config --cflags`
54
54
jscal.o: jscal.c axbtnmap.h
55
55
 
56
56
jscal: jscal.o axbtnmap.o
57
 
        $(CC) $(CFLAGS) $(CPPFLAGS) -lm $^ -o $@
 
57
        $(CC) $(CFLAGS) $(CPPFLAGS) $^ -lm -o $@
58
58
 
59
59
jstest.o: jstest.c axbtnmap.h
60
60
 
64
64
        $(CC) $(CFLAGS) $(CPPFLAGS) gencodes.c -o gencodes
65
65
 
66
66
acceltest: acceltest.c
67
 
        $(CC) $(CFLAGS) $(CPPFLAGS) -lm $^ -o $@
 
67
        $(CC) $(CFLAGS) $(CPPFLAGS) $^ -lm -o $@
68
68
 
69
69
jskeepalive: jskeepalive.c
70
70
        $(CC) $(CFLAGS) $(CPPFLAGS) $^ -o $@