mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-27 15:45:56 -05:00
9 lines
211 B
Makefile
9 lines
211 B
Makefile
CC=gcc
|
|
CFLAGS := $(CFLAGS) -g -I/sw/include -DHAVE_CONFIG_H -I. -I.. -Wall -DERR_LEAN
|
|
TARGET=parser
|
|
OBJECTS=parser-driver.o smart-parser.o err.o
|
|
|
|
$(TARGET): $(OBJECTS)
|
|
$(CC) -o $(TARGET) $(LDFLAGS) $(OBJECTS)
|
|
|