aboutsummaryrefslogtreecommitdiff
path: root/apps/chess/Makefile
blob: b22cb1af25aae39d920ad3158ecccbcd4cfe6bf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# MIT License, Copyright (c) 2021 Marvin Borner

OBJS = chess.o

all: $(OBJS)
	@$(LD) -o $(BUILD)/apps/chess $(LDFLAGS) $< -lgui -ltxt -lc

clean:
	@$(RM) -f $(OBJS)

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