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

all: $(EXE)

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

clean:
	rm -f $(EXE)