cmdline: new build system
[libcmdline.git] / build / extension_example / Makefile
diff --git a/build/extension_example/Makefile b/build/extension_example/Makefile
deleted file mode 100755 (executable)
index 6839965..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-SRC = main.c commands.c parse_obj_list.c
-
-OBJS = $(SRC:%.c=%.o)
-
-PROG = extension_example
-LDLIB = ../lib/libcmdline.a
-
-all: $(PROG)
-
-clean:
-       rm -f $(PROG) $(OBJS)
-
-$(PROG): $(OBJS) $(LDLIB)
-       $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDLIB)
-
-%.o: %.c
-       $(CC) $(CFLAGS) -c $< -o $@