summaryrefslogtreecommitdiff
path: root/libterm/examples/Makefile
blob: ffc3d1d17231b09bb1652eaeec8189b458d28b7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CC=gcc
CFLAGS=-I../ ../libterm.o
SOURCES=detect_resize.c detect_screen_size.c filtered_input.c invisible_input.c \
readline.c restore_screen.c print_8025.c
EXE=$(SOURCES:.c=)
BUILD_DIR=.

all: $(EXE)

%: %.c
	$(CC) $(CFLAGS) $< -o $(BUILD_DIR)/$@

clean:
	rm -f $(EXE)