aboutsummaryrefslogtreecommitdiff
path: root/shape/Makefile
blob: a384aba3fcf2161c49ea823e84b9c9927ea7f7be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
CC = cc
CFLAGS = -Wall -O2
LDFLAGS =
OBJS = shape.o uc.o util.o

all: shape
%.o: %.c
	$(CC) -c $(CFLAGS) $<
shape: $(OBJS)
	$(CC) -o $@ $(OBJS) $(LDFLAGS)
clean:
	rm -f *.o shape