owntone-server/src/config.mk

13 lines
253 B
Makefile
Raw Normal View History

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