diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-11-13 15:04:07 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-11-13 15:04:07 +0100 |
commit | d634b41735813489627cca534a9f51a3b5ad9b91 (patch) | |
tree | f3768efd35232fabc1101fc2de67e5c7b63cdabe /confui | |
parent | 8b6b31695774ff8dd2d420d879bd22ffaf49f297 (diff) |
update architecture
Diffstat (limited to 'confui')
-rw-r--r-- | confui/main.c | 7 | ||||
-rw-r--r-- | confui/makefile | 24 |
2 files changed, 31 insertions, 0 deletions
diff --git a/confui/main.c b/confui/main.c new file mode 100644 index 0000000..1be969b --- /dev/null +++ b/confui/main.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main() { + printf("hello world!\n"); + + return 0; +} diff --git a/confui/makefile b/confui/makefile new file mode 100644 index 0000000..e646524 --- /dev/null +++ b/confui/makefile @@ -0,0 +1,24 @@ +CC = gcc +LD = gcc +RM = rm -f +CFLAGS = +LFLAGS = +TARGET = bts + +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 + |