Skip to content

Commit

Permalink
Update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Gitlab authored and jack-sanchez committed May 16, 2019
1 parent a00b9c6 commit 2f1fcd5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ SHARED_OBJ=vsd.o vsd_csv.o
TARGET_SO=libvsd.so

CFLAGSLIST= -g -Wall -I/usr/local -fPIC $(CFLAGS) $(CPPFLAGS)
LFLAGS= -L/usr/lib -ldstc -lrmc

.PHONY: all clean install nomacro uninstall examples install_examples

Expand All @@ -25,7 +24,7 @@ nomacro:
$(MAKE) -C examples nomacro

$(TARGET_SO): $(SHARED_OBJ)
$(CC) --shared $(CFLAGSLIST) $^ $(LFLAGS) -o $@
$(CC) --shared $(CFLAGSLIST) $^ $(LDFLAGS) -o $@

# Recompile everything if dstc.h changes
$(SHARED_OBJ): $(INCLUDE)
Expand Down

0 comments on commit 2f1fcd5

Please sign in to comment.