Skip to content

Commit

Permalink
Merge pull request #1 from NeroBurner/allow_LDFLAGS
Browse files Browse the repository at this point in the history
make: allow LDFLAGS to be passed
  • Loading branch information
pipe01 authored Jun 4, 2024
2 parents 9de3306 + dabced9 commit 07dcfea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ TDIR = test
CC = gcc
CFLAGS = -I$(IDIR) -I$(LDIR) -fPIC -Werror -Wall -Wextra -Wno-unused-parameter

LIBS = -lm
LIBS = $(LDFLAGS) -lm

WASM_FUNCS = malloc pinetime_new pinetime_step pinetime_loop
WASM_FUNCS += pinetime_get_st7789 st7789_read_screen st7789_is_sleeping st7789_get_write_count
Expand Down

0 comments on commit 07dcfea

Please sign in to comment.