~ubuntu-branches/ubuntu/precise/typespeed/precise

« back to all changes in this revision

Viewing changes to testsuite/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Dafydd Harries
  • Date: 2007-12-07 05:14:13 UTC
  • mto: (4.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20071207051413-x6wtxujyiabvyuwu
Tags: upstream-0.6.4
ImportĀ upstreamĀ versionĀ 0.6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CC = gcc
 
2
AM_CFLAGS = -I../src -Wall -W -pedantic -std=c99
 
3
 
 
4
localedir = $(datadir)/locale
 
5
AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" -DTVERSION=\"v$(VERSION)\" -DTEST
 
6
LDADD = @LIBINTL@
 
7
 
 
8
EXTRA_DIST = t_unescstr.sh t_loadwords_data/3_empty
 
9
 
 
10
noinst_PROGRAMS = t_level t_loadwords t_typorankkaus t_unescstr
 
11
 
 
12
t_level_SOURCES= misc-ctest.c t_level.c
 
13
nodist_t_level_SOURCES = file.c menu.c network.c typespeed.c
 
14
 
 
15
t_loadwords_SOURCES = t_loadwords.c
 
16
nodist_t_loadwords_SOURCES =  file.c menu.c misc.c network.c typespeed.c
 
17
 
 
18
t_typorankkaus_SOURCES = misc-ctest.c t_typorankkaus.c
 
19
nodist_t_typorankkaus_SOURCES = file.c menu.c network.c typespeed.c
 
20
 
 
21
t_unescstr_SOURCES = t_unescstr.c
 
22
nodist_t_unescstr_SOURCES = file.c menu.c misc.c network.c typespeed.c
 
23
 
 
24
file.o: ../src/file.c ../src/pathnames.h ../src/typespeed.h
 
25
        $(COMPILE) -c ../src/file.c
 
26
 
 
27
menu.o: ../src/menu.c ../src/typespeed.h
 
28
        $(COMPILE) -c ../src/menu.c
 
29
 
 
30
misc.o: ../src/misc.c ../src/typespeed.h
 
31
        $(COMPILE) -c ../src/misc.c
 
32
 
 
33
misc-ctest.o: ../src/misc.c ../src/typespeed.h
 
34
        $(COMPILE) -DCOLORTEST -c -o misc-ctest.o ../src/misc.c
 
35
 
 
36
network.o: ../src/network.c ../src/typespeed.h
 
37
        $(COMPILE) -c ../src/network.c
 
38
 
 
39
typespeed.o: ../src/typespeed.c
 
40
        $(COMPILE) -DTEST -c ../src/typespeed.c
 
41