From a75b3f7b47c074f2191a33c1f14ad4148754ed80 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Fri, 7 Apr 2017 23:58:20 +0200 Subject: Throw away the C client since it doesn't work --- client/Makefile | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 client/Makefile (limited to 'client/Makefile') diff --git a/client/Makefile b/client/Makefile deleted file mode 100644 index e9bbb91..0000000 --- a/client/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -CC = gcc -CFLAGS = -Wall -Wextra -std=c11 -g -fwrapv -I$(TERMIO)/include -LDFLAGS = -L$(TERMIO)/lib -ltermio - -TERMIO = $(HOME)/prefix - -TARGETS = client - -.PHONY: all clean remake - -# Clear all implicit suffix rules -.SUFFIXES: - -# Don't delete intermediate files -.SECONDARY: - -all: $(TARGETS) - -clean: - rm -f $(TARGETS) *.o - -remake: clean - $(MAKE) all - - -$(TARGETS): $(patsubst %.c,%.o,$(wildcard *.c)) - $(CC) -o $@ $^ $(LDFLAGS) - -%.o: %.c $(wildcard *.h) - $(CC) $(CFLAGS) -c -o $@ $< -- cgit v1.2.3-54-g00ecf