9 lines
146 B
Makefile
9 lines
146 B
Makefile
all: gyehoek.o
|
|
|
|
gyehoek.o: gyehoek.c
|
|
$(CC) $(CFLAGS) -c gyehoek.c -o gyehoek.o
|
|
|
|
.PHONY: install
|
|
install:
|
|
install -Dm644 -t $(out)/lib gyehoek.o
|