]> git.meshlink.io Git - meshlink/blobdiff - meshlink-sample/Makefile
Renamed meshlink-sample/ to examples/.
[meshlink] / meshlink-sample / Makefile
diff --git a/meshlink-sample/Makefile b/meshlink-sample/Makefile
deleted file mode 100644 (file)
index 6c69ac8..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-# Simple Makefile
-
-CC=gcc
-LIBS= -L../src/.libs/ -lmeshlink -lcrypto -lz -ldl -lpthread -static
-INCLUDE= -I../src/
-LOADLIBES= $(LIBS)
-OBJS= meshlinkapp.o
-CFLAGS= -g -D_PC_ $(INCLUDE) -Wall
-EXEC=meshlinkapp
-default: all
-all: $(OBJS) $(EXEC)
-$(EXEC): $(OBJS)
-clean:
-       -rm -f $(OBJS)
-       -rm -f $(EXEC)
-
-
-rebuild: clean all