blob: 0ae6f006ba71f6dea7f24af626d120e1152d4f3e [file] [edit]
# Makefile to build speechd server
# by Tomas Cerha <cerha@brailcom.cz>
include ../../Makefile.config
SERVER = speechd
all: speechd
# === speech server ===
$(SERVER): $(SERVER).o
$(SERVER).o: $(SERVER).c $(INCLUDE)/def.h
$(CC) -I$(INCLUDE) $(CFLAGS) -c $(SERVER).c
#########################
clean:
rm -f *.o $(SERVER)