mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-26 23:25:56 -05:00
13 lines
253 B
Makefile
13 lines
253 B
Makefile
# $Id$
|
|
CC=gcc
|
|
CFLAGS := $(CFLAGS) -g -DHAVE_CONFIG_H -I. -I.. -DERR_LEAN
|
|
LDFLAGS := $(LDFLAGS)
|
|
TARGET = conf
|
|
OBJECTS=config-driver.o conf.o ll.o err.o
|
|
|
|
$(TARGET): $(OBJECTS)
|
|
$(CC) -o $(TARGET) $(LDFLAGS) $(OBJECTS)
|
|
|
|
clean:
|
|
rm -f $(OBJECTS) $(TARGET)
|