Skip to content

Commit d6ea538

Browse files
committed
Fix Deep Shortcuts
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 <munsoner@bu.edu>
1 parent be1188a commit d6ea538

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ redirect:
1010
make -C ../ bin
1111

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

1515
# Don't call this target directly
1616
all: $(EXECS)

0 commit comments

Comments
 (0)