~ubuntu-branches/ubuntu/saucy/picprog/saucy

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Package Import Robot
  • Author(s): Koichi Akabe
  • Date: 2011-12-03 10:08:38 UTC
  • mfrom: (4.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20111203100838-f05iyixkqjdh2byd
Tags: 1.9.1-2
* debian/control
  - changed priority from extra to optional
  - narrowed environments: linux-any kfreebsd-any

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
$(PROG): $(OBJS)
39
39
        $(CXX) $(LDFLAGS) $(OBJS) -o $@
40
40
 
 
41
testport: testport.o
 
42
        $(CXX) $(LDFLAGS) $^ -o $@
 
43
 
41
44
dep:
42
45
        $(CXX) -M $(CXXFLAGS) *.cc > .depend
43
46
 
53
56
                $(PROG)-$$VERSION/[a-zA-Z]*.{html,png,1,h,cc}
54
57
 
55
58
install: all
56
 
        install -c -o 0 -g 0 -m 755 $(PROG) /usr/local/bin/
57
 
        install -c -o 0 -g 0 -m 644 *.1 /usr/local/man/man1/
 
59
        install -c -o 0 -g 0 -m 755 $(PROG) $(DESTDIR)/usr/bin/
 
60
        install -c -o 0 -g 0 -m 644 *.1 $(DESTDIR)/usr/share/man/man1/
58
61
 
59
62
#
60
63
# include a dependency file if one exists