aboutsummaryrefslogtreecommitdiff
path: root/confui/makefile
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-11-30 13:44:59 +0100
committerlonkaars <loek@pipeframe.xyz>2022-11-30 13:44:59 +0100
commit390726a83913552e63d4499d216ea6f370d6adad (patch)
treeeabfb4cb6d2057c6160d687f2aaede5f24f15692 /confui/makefile
parent0daf8c516e48551098cc53f3f88cb52e9a47df35 (diff)
move QtClient to confuiHEADmaster
Diffstat (limited to 'confui/makefile')
-rw-r--r--confui/makefile24
1 files changed, 0 insertions, 24 deletions
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
-