Skip to content

Commit

Permalink
chore(makefile) honor $RPM_OPT_FLAGS and $RPM_LD_FLAGS (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-scheck authored Oct 3, 2022
1 parent 4554a61 commit ec552e7
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 @@ -24,7 +24,7 @@ lib: src/$(LIBNAME)

src/$(LIBNAME):
export MACOSX_DEPLOYMENT_TARGET="10.3";
$(CC) $(CF) -o $@ src/$(T)lib.c $(LF)
$(CC) $(CF) $(RPM_OPT_FLAGS) $(RPM_LD_FLAGS) -o $@ src/$(T)lib.c $(LF)

install:
$(INSTALL_PROGRAM) -D src/$(LIBNAME) $(DESTDIR)$(LUA_CDIR)/$(LIBNAME)
Expand Down

0 comments on commit ec552e7

Please sign in to comment.