From 390726a83913552e63d4499d216ea6f370d6adad Mon Sep 17 00:00:00 2001 From: lonkaars Date: Wed, 30 Nov 2022 13:44:59 +0100 Subject: move QtClient to confui --- confui/makefile | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 confui/makefile (limited to 'confui/makefile') diff --git a/confui/makefile b/confui/makefile deleted file mode 100644 index 78301cb..0000000 --- a/confui/makefile +++ /dev/null @@ -1,24 +0,0 @@ -CC = gcc -LD = gcc -RM = rm -f -CFLAGS = -LFLAGS = -TARGET = confui - -SRCS := $(wildcard *.c) -OBJS := $(patsubst %.c,%.o, $(SRCS)) - -all: $(TARGET) - -%.o: %.c - $(CC) -c $(CFLAGS) $< -o $@ - -$(TARGET): $(OBJS) - $(LD) $^ $(LFLAGS) -o $@ - -clean: - $(RM) $(TARGET) $(OBJS) - -compile_commands: clean - compiledb make - -- cgit v1.2.3