summaryrefslogtreecommitdiff
path: root/nix-test/Makefile
blob: 96bee7921238fd7bdbe1e21b761e4640f2ef43c5 (plain)
1
2
3
4
5
6
7
8
9
10
OUT    = libnixtest.a
CFLAGS = -fPIC -D$(OS)
OBJS   = errno.o

$(OUT): $(OBJS)
	ar -rcs $@ $^

clean:
	rm -f $(OBJS)
	rm -f $(OUT)