summaryrefslogtreecommitdiffstats
path: root/rob/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'rob/Makefile')
-rw-r--r--rob/Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/rob/Makefile b/rob/Makefile
deleted file mode 100644
index 81ebb5e..0000000
--- a/rob/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-
-CFLAGS_W = -Wall -Wextra -Werror -Wno-implicit-fallthrough
-CFLAGS_O = -O3 -march=native -flto -fuse-linker-plugin -static
-CFLAGS = $(CFLAGS_W) $(CFLAGS_O)
-
-.PHONY: all
-all: rob
-
-rob: rob.c
- gcc $(CFLAGS) \
- `pkg-config --static --cflags libalx-base` \
- `pkg-config --static --cflags libalx-telnet-tcp`\
- `pkg-config --static --cflags libalx-robot` \
- $< -o $@ \
- `pkg-config --static --libs libalx-robot` \
- `pkg-config --static --libs libalx-telnet-tcp` \
- `pkg-config --static --libs libalx-base`
-
-clean:
- rm -f rob