~ubuntu-branches/ubuntu/trusty/modem-manager-gui/trusty-backports

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Package Import Robot
  • Author(s): Graham Inggs
  • Date: 2013-07-30 12:51:59 UTC
  • Revision ID: package-import@ubuntu.com-20130730125159-flzv882fhuzhmfmi
Tags: upstream-0.0.16
ImportĀ upstreamĀ versionĀ 0.0.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include Makefile_h
 
2
 
 
3
DESTDIR=$(PREFIX)/bin
 
4
 
 
5
all: modem-manager-gui
 
6
 
 
7
modem-manager-gui:
 
8
        (cd src && ${MAKE} all)
 
9
        (cd src/modules && ${MAKE} all)
 
10
        (cd po && ${MAKE} all)
 
11
        
 
12
install:
 
13
        (cd src && ${MAKE} install)
 
14
        (cd src/modules && ${MAKE} install)
 
15
        (cd resources && ${MAKE} install)
 
16
        (cd po && ${MAKE} install)
 
17
        (cd man && ${MAKE} install)
 
18
 
 
19
uninstall:
 
20
        (cd src && ${MAKE} uninstall)
 
21
        (cd src/modules && ${MAKE} uninstall)
 
22
        (cd resources && ${MAKE} uninstall)
 
23
        (cd po && ${MAKE} uninstall)
 
24
        (cd man && ${MAKE} uninstall)
 
25
        
 
26
clean:
 
27
        (cd src && ${MAKE} clean)
 
28
        (cd src/modules && ${MAKE} clean)
 
29
        (cd resources && ${MAKE} clean)
 
30
        (cd po && ${MAKE} clean)
 
31