summary refs log tree commit diff homepage
path: root/Makefile
blob: 7f63807b5e9b151681fba4ddbaa41988e3275813 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
BINS = day01

all: $(BINS)

%: %.o
	ld -o $@ $<

%.o: %.asm sys.asm lib.asm
	nasm -f elf64 -o $@ $<

clean:
	rm -f $(BINS)

.PHONY: clean
n fbclock argvJune McEnroe 2018-01-29Add fbclockJune McEnroe 2018-01-29Remove color from MakefileJune McEnroe 2018-01-29Set t_Co = 8June McEnroe Weirdly with t_Co = 16 yellow and bright white weren't showing up on TERM=linux. 2018-01-29Add :Q command aliasJune McEnroe It seemes I can't take my finger off the shift key fast enough. 2018-01-29Add setuid target for briJune McEnroe 2018-01-28Add init function to fb interfaceJune McEnroe 2018-01-28Add color.cJune McEnroe