Skip to content

Commit

Permalink
fix obj_file syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ColleagueRiley committed Aug 5, 2024
1 parent 89a4e09 commit 51b7c93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,11 @@ RGFW$(OBJ_FILE): RGFW.h
$(CC) -x c $(CUSTOM_CFLAGS) -c RGFW.h -D RGFW_IMPLEMENTATION -fPIC -D RGFW_EXPORT

libRGFW$(LIB_EXT): RGFW.h RGFW$(OBJ_FILE)
make RGFW.$(OBJ_FILE)
make RGFW$(OBJ_FILE)
$(CC) $(CUSTOM_CFLAGS) -shared RGFW$(OBJ_FILE) $(LIBS) -o libRGFW$(LIB_EXT)

libRGFW.a: RGFW.h RGFW.o
make RGFW.$(OBJ_FILE)
libRGFW.a: RGFW.h RGFW$(OBJ_FILE)
make RGFW$(OBJ_FILE)
$(AR) rcs libRGFW.a RGFW$(OBJ_FILE)


Expand Down

0 comments on commit 51b7c93

Please sign in to comment.