Skip to content

Commit

Permalink
FIx makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
saivert committed Dec 3, 2020
1 parent 4fc3d72 commit af03a8e
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 @@ -2,7 +2,7 @@ CC?=gcc
CFLAGS?=-I/usr/local/include

all:
$(CC) $(CFLAGS) -std=c99 -shared -O2 -o pulse2.so pulse.c -lpulse -fPIC -Wall -march=native
$(CC) $(CFLAGS) -std=c99 -shared -O2 -o pulse2.so pulse.c $(LDFLAGS) -lpulse -fPIC -Wall -march=native
debug: CFLAGS += -DDBPULSE_DEBUG -g
debug: all

Expand Down

0 comments on commit af03a8e

Please sign in to comment.