You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
392 B

CC=clang
CFLAGS=-O2 -g -Wall -I/usr/include -I/usr/X11R6/include `pkg-config --cflags glib-2.0 gobject-2.0 atk-bridge-2.0 atspi-2 speech-dispatcher`
LDFLAGS=-pthread -L/usr/X11R6/lib -lm `pkg-config --libs glib-2.0 gobject-2.0 atk-bridge-2.0 atspi-2 speech-dispatcher`
EXAMPLES = $(patsubst %.c,%,$(wildcard *.c))
default:
$(CC) -o speak-selection $< $(CFLAGS) $(LDFLAGS) speak-selection.c