owntone-server/src/config.mk

13 lines
253 B
Makefile
Raw Normal View History

2006-02-05 00:22:46 +00:00
# $Id$
CC=gcc
CFLAGS := $(CFLAGS) -g -DHAVE_CONFIG_H -I. -I.. -DERR_LEAN
2006-02-05 00:22:46 +00:00
LDFLAGS := $(LDFLAGS)
2006-02-08 23:02:43 +00:00
TARGET = conf
OBJECTS=config-driver.o conf.o ll.o err.o
2006-02-05 00:22:46 +00:00
$(TARGET): $(OBJECTS)
$(CC) -o $(TARGET) $(LDFLAGS) $(OBJECTS)
clean:
rm -f $(OBJECTS) $(TARGET)