Skip to content

Commit

Permalink
Fix Deep Shortcuts
Browse files Browse the repository at this point in the history
The combination of libdeep and sc_lib broke deep shortcuts because we
had no way to pass the define to the C file.

Signed-off-by: Eric B Munson <[email protected]>
  • Loading branch information
khers committed Apr 3, 2023
1 parent be1188a commit d6ea538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ redirect:
make -C ../ bin

%.o: %.c
$(CC) -c $(CFLAGS) -I $(SYMLIB_INCLUDE_DIR) -fPIC -o $@ $<
$(CC) -c $(CFLAGS) -I $(SYMLIB_INCLUDE_DIR) $(DEEP_SC_DEFINE) -fPIC -o $@ $<

# Don't call this target directly
all: $(EXECS)
Expand Down

0 comments on commit d6ea538

Please sign in to comment.