aboutsummaryrefslogtreecommitdiff
path: root/client/Makefile
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-04-07 23:58:20 +0200
committertomsmeding <tom.smeding@gmail.com>2017-04-07 23:58:20 +0200
commita75b3f7b47c074f2191a33c1f14ad4148754ed80 (patch)
treef719fbdcd92dfd09f8da8610c4e94090f64352b5 /client/Makefile
parent4dcb97eec19bcb5365fb355a81e299545b97ef75 (diff)
Throw away the C client since it doesn't work
Diffstat (limited to 'client/Makefile')
-rw-r--r--client/Makefile30
1 files changed, 0 insertions, 30 deletions
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 $@ $<