From 11d327879082b557cc2a887d054bed9b1341e47b Mon Sep 17 00:00:00 2001 From: lonkaars Date: Thu, 29 Sep 2022 10:53:10 +0200 Subject: My first commit --- helloworld.c | 6 ++++++ makefile | 24 ++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 helloworld.c create mode 100644 makefile diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 0000000..ef66efb --- /dev/null +++ b/helloworld.c @@ -0,0 +1,6 @@ +#include + +int main() { + printf("Hello, World!\n"); + return 0; +} diff --git a/makefile b/makefile new file mode 100644 index 0000000..4d538da --- /dev/null +++ b/makefile @@ -0,0 +1,24 @@ +CC = gcc +LD = gcc +RM = rm -f +CFLAGS = +LFLAGS = +TARGET = main + +SRCS := $(wildcard *.c) +OBJS := $(patsubst %.c,%.o, $(SRCS)) + +all: main + +%.o: %.c + $(CC) -c $(CFLAGS) $< -o $@ + +$(TARGET): $(OBJS) + $(LD) $^ $(LFLAGS) -o $@ + +clean: + $(RM) $(TARGET) $(OBJS) + +compile_commands: clean + compiledb make + -- cgit v1.2.3