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