blob: 40c3d50eb2c17f26c65cd9fc248f9e82a847c681 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
BIN = lisc
OBJ = main.o parse.o ssa.o live.o isel.o spill.o rega.o emit.o
CFLAGS = -Wall -Wextra -std=c99 -g -pedantic
$(BIN): $(OBJ)
$(CC) $(LDFLAGS) $(OBJ) -o $@
$(OBJ): lisc.h
.PHONY: clean syndoc
clean:
rm -f $(BIN) $(OBJ)
syndoc:
unison doc ssh://qcar@h/data/d/ssa-doc
|