about summary refs log tree commit diff
path: root/Makefile
blob: 073f0be271d6b15bc34111d8a6e50dd6afa4bdfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
CFLAGS += -std=c99 -Wall -Wextra -Wpedantic

include config.mk

BINS = dump freecell sol

all: $(BINS)

$(BINS): cards.o

.o:
	$(CC) $(LDFLAGS) $< cards.o $(LDLIBS) -o $@

cards.o dump.o freecell.o sol.o: cards.h

freecell.o sol.o: asset.h layout.h stack.h

clean:
	rm -f $(BINS) *.o *.bmp
>June McEnroe 2021-01-20Use mtags in source-filterJune McEnroe 2021-01-19Add mtags to generate tags for make and mdocJune McEnroe 2021-01-19Map tags to IDs using only [[:alnum:]-._]June McEnroe 2021-01-19Don't use a pager if reading standard inputJune McEnroe 2021-01-19Support BSD make syntax and match *.amJune McEnroe 2021-01-19Match tab following escaped newline in make assignmentsJune McEnroe 2021-01-18Allow matching lexers using first input lineJune McEnroed cwmJune McEnroe 2021-02-07Add BintiJune McEnroe 2021-02-07Finish configuring xtermJune McEnroe 2021-02-06Enable tapping, reverse scroll, set scaling in wsconsctlJune McEnroe 2021-02-06Set root window to black on purple snowJune McEnroe 2021-02-06Add xmodmap configurationJune McEnroe 2021-02-06Add initial OpenBSD X configurationJune McEnroe 2021-02-06Add xterm output to schemeJune McEnroe