nix-test 0.0.1

Testing helpers for Nix
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)