Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
john-tornblom committed Apr 7, 2024
1 parent 469b68b commit 5f7dcc9
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions Makefile
Expand Up @@ -26,18 +26,14 @@ endif
ELF := klogsrv.elf

CFLAGS := -Wall -Werror
LDADD := -lkernel_web -lSceLibcInternal

all: $(ELF)

%.o: %.c
$(CC) -c $(CFLAGS) -o $@ $^

$(ELF): main.o
$(LD) $^ $(LDADD) -o $@
$(ELF): main.c
$(CC) $(CFLAGS) -o $@ $^

clean:
rm -f *.o $(ELF)
rm -f $(ELF)

test: $(ELF)
$(PS5_DEPLOY) -h $(PS5_HOST) -p $(PS5_PORT) $^
Expand Down

0 comments on commit 5f7dcc9

Please sign in to comment.