mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-27 07:35:57 -05:00
10 lines
259 B
Makefile
10 lines
259 B
Makefile
CC=gcc
|
|
CFLAGS := $(CFLAGS) -g -I/sw/include -DHAVE_CONFIG_H -I. -I..
|
|
LDFLAGS := $(LDFLAGS) -L/sw/lib -logg -lvorbisfile -lFLAC -lvorbis
|
|
|
|
OBJECTS=scanner-driver.o restart.o wma.o err.o flac.o ogg.o
|
|
|
|
scanner: $(OBJECTS)
|
|
$(CC) -o scanner $(LDFLAGS) $(OBJECTS)
|
|
|