~kris/9p

krisyotam.net

ref: e60cf4fe0afb6a67a8806424c39080016d6da2e9 krisyotam.net/Makefile -rw-r--r-- 280 bytes
e60cf4fe — Kris Yotam chore: sync local state after restore (push updates, no pull) a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# gen - static page generator for krisyotam.net
# See LICENSE file for copyright and license details.

CC = cc
CFLAGS = -std=c99 -Os -Wall -Wextra -pedantic

all: gen

gen: gen.c config.h
	$(CC) $(CFLAGS) -o $@ gen.c

pages: gen
	./gen

clean:
	rm -f gen

.PHONY: all pages clean