~ubuntu-branches/ubuntu/lucid/wmmoonclock/lucid

« back to all changes in this revision

Viewing changes to Src/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Denis Briand
  • Date: 2009-07-26 10:30:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090726103000-2y5ws6okikxakvfp
Tags: 1.27-28
* Add southern hemisphere support (Closes: #537480).
  Thanks to Alvaro Steiger.
* Bump standards version to 3.8.2.0
* Add quilt patch system.
* Add patches:
  + 01_all_previous_diff.diff
  + 02_update_time.diff
  + 03_add_southern_hemisphere_support.diff
  + 04_fix_hyphen_used_as_minus_sign.diff
* Add debhelper 7 build depends.
* Add debian/compat file.
* Remove trailing whitespaces in changelog.upstream.
* Add an empty watch file (no upstream repository).
* Improve rules file by using more debhelper commands.
* Remove Martin A. Godisch from uploaders field
  Thanks to him to have sponsored wmmoonclock.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
CC     = gcc
2
 
# CFLAGS = -O2
 
2
CFLAGS = -O2
3
3
INCDIR = -I/usr/X11R6/include/X11
4
4
DESTDIR= /usr/X11R6
5
5
LIBDIR = -L/usr/X11R6/lib
22
22
 
23
23
wmMoonClock.o: wmMoonClock_master.xpm wmMoonClock_mask.xbm CalcEphem.h
24
24
wmMoonClock:    $(OBJS) 
25
 
        $(CC) $(CFLAGS) $(SYSTEM) -lm -o wmMoonClock $^ $(INCDIR) $(LIBDIR) $(LIBS)
 
25
        $(CC) $(COPTS) $(SYSTEM) -lm -o wmMoonClock $^ $(INCDIR) $(LIBDIR) $(LIBS)
26
26
 
27
27
clean:
28
28
        for i in $(OBJS) ; do \
31
31
        rm -f wmMoonClock
32
32
 
33
33
install:: wmMoonClock
34
 
        install -d -m 0755 $(DESTDIR)/usr/bin $(DESTDIR)/usr/share/man/man1
35
 
        install    -m 0755 wmMoonClock $(DESTDIR)/usr/bin
36
 
        install    -m 0644 wmMoonClock.1 $(DESTDIR)/usr/share/man/man1 
 
34
        install -s -m 0755 wmMoonClock $(DESTDIR)/bin
 
35
        install    -m 0644 wmMoonClock.1 $(DESTDIR)/man/man1 
37
36