diff options
Diffstat (limited to 'l4bds/Makefile')
-rw-r--r-- | l4bds/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/l4bds/Makefile b/l4bds/Makefile new file mode 100644 index 0000000..07c4235 --- /dev/null +++ b/l4bds/Makefile @@ -0,0 +1,14 @@ +CC=cc +AR=ar +RM=rm +CFLAGS=-Wall -g -I. +OBJ= +LIBFILE=l4bds.a + +.PHONY: all clean + +all: $(LIBFILE) +$(LIBFILE): $(OBJ) + $(AR) rcs $(LIBFILE) $(OBJ) +clean: + $(RM) -f $(LIBFILE) $(OBJ) |