~vcs-imports/speech-dispatcher/trunk

« back to all changes in this revision

Viewing changes to src/clients/Makefile

  • Committer: Tomas Cerha
  • Date: 2001-03-01 08:40:41 UTC
  • Revision ID: git-v1:b6256d641cbd7d53517ecaedd26977e0c3baaa2a
Initial revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile to build speechd clients
 
2
# by Tomas Cerha <cerha@brailcom.cz>
 
3
 
 
4
include ../../Makefile.config
 
5
 
 
6
# all executable files to make
 
7
CLIENTS = client
 
8
 
 
9
all: $(CLIENTS)
 
10
 
 
11
# === client ===
 
12
client: client.o
 
13
client.o: client.c $(INCLUDE)/def.h
 
14
        $(CC) -I$(INCLUDE) $(CFLAGS) -c client.c
 
15
 
 
16
#######################
 
17
clean:
 
18
        rm -f *.o $(CLIENTS)