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 /nrf528xx/makefile | |
parent | 8b6b31695774ff8dd2d420d879bd22ffaf49f297 (diff) |
update architecture
Diffstat (limited to 'nrf528xx/makefile')
-rw-r--r-- | nrf528xx/makefile | 24 |
1 files changed, 0 insertions, 24 deletions
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 - |