~willismonroe/ubuntu/precise/xdg-utils/typo-fix-996304

« back to all changes in this revision

Viewing changes to tests/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Per Olofsson
  • Date: 2006-08-29 17:35:02 UTC
  • Revision ID: james.westby@ubuntu.com-20060829173502-ffe063dqe8ajg2rm
Tags: upstream-1.0~beta3
ImportĀ upstreamĀ versionĀ 1.0~beta3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
MKDIR           = mkdir -p
 
2
RMDIR           = rmdir
 
3
INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
 
4
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
 
5
INSTALL_LIBRARY = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
 
6
INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
 
7
INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
 
8
XMLTO           = @XMLTO@
 
9
 
 
10
prefix          = @prefix@
 
11
exec_prefix     = @exec_prefix@
 
12
bindir          = @bindir@
 
13
mandir          = @mandir@
 
14
 
 
15
all:
 
16
 
 
17
release:
 
18
        rm -rf xdg-su tmp
 
19
        rm -f xdg-test.log *~
 
20
 
 
21
test:
 
22
        ./testrun -IRC
 
23
        rm -rf tmp/xdgt*
 
24
 
 
25
distclean: clean
 
26
        rm -f Makefile
 
27
 
 
28
clean:  tests-clean
 
29
 
 
30
tests-userclean:
 
31
        rm -rf tmp/xdgt*
 
32
        find ${HOME} -name 'xdgtestdata*' | xargs rm -rf
 
33
        find ${HOME} -name 'x-xdg*.xml' | xargs rm -f
 
34
        find ${HOME}/.kde/share/mimelnk -name 'x-xdg*.desktop' | xargs rm -f
 
35
 
 
36
tests-clean:    tests-userclean
 
37
        find `echo "${XDG_DATA_DIRS}:/usr/local/share/:/usr/share/:${XDG_CONFIG_DIRS}:/etc/xdg" | sed -e 's/:/ /g'` -name 'xdgtestdata*' | xargs rm -rf
 
38
        find `echo "${XDG_DATA_DIRS}:/usr/local/share/:/usr/share/:${XDG_CONFIG_DIRS}:/etc/xdg" | sed -e 's|:| |g'` -name 'x-xdgt*' | xargs rm -f
 
39
 
 
40
install:
 
41
 
 
42
uninstall:
 
43