Skip to content

Commit

Permalink
Fix MacOS compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
fjtrujy committed May 2, 2024
1 parent b9156ad commit 19e06e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions usbhostfs_pc/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
OUTPUT=usbhostfs_pc
OBJS=main.o
LIBS=-lusb -lpthread
CFLAGS=-Wall -ggdb -I../usbhostfs -DPC_SIDE -D_FILE_OFFSET_BITS=64 -I. -O2
LDFLAGS=-L.
LIBS=-lpthread
CFLAGS=-Wall -ggdb -I../usbhostfs -DPC_SIDE -D_FILE_OFFSET_BITS=64 -I. -O2 $(shell pkg-config --cflags libusb)
LDFLAGS=-L. $(shell pkg-config --libs libusb)

PREFIX=$(shell psp-config --pspdev-path 2> /dev/null)

Expand Down

0 comments on commit 19e06e6

Please sign in to comment.