summaryrefslogtreecommitdiff
path: root/nix-test/Makefile
blob: 6767452963e8dcc264617fa01d73e1e5dbff4524 (plain)
1
2
3
4
5
6
7
8
9
10
11
OUT    = libnixtest.a
CFLAGS = -fPIC -D$(OS)
OBJS   = const.o \
		 sizes.o

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

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