From d634b41735813489627cca534a9f51a3b5ad9b91 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Sun, 13 Nov 2022 15:04:07 +0100 Subject: update architecture --- nrf528xx/makefile | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 nrf528xx/makefile (limited to 'nrf528xx/makefile') diff --git a/nrf528xx/makefile b/nrf528xx/makefile deleted file mode 100644 index 78d52e2..0000000 --- a/nrf528xx/makefile +++ /dev/null @@ -1,24 +0,0 @@ -CC = gcc -LD = gcc -RM = rm -f -CFLAGS = -LFLAGS = -TARGET = main - -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