####################################################################### # This file is part of the mp3car-0.1.1 package # Linux LCD-client for the mp3 server box # http://www.igalaxie.com/ltt/mp3 ####################################################################### prefix=/usr bindir=$(prefix)/bin CC=g++ CFLAGS=-g -O2 -Wall LDLIBS=-L/usr/lib/mysql -lmysqlclient -lpthread TARGET=mp3car OBJS=main.o appbase.o lcd2041.o keyboard.o irclient.o dbclient.o sbclient.o listwin.o imenu.o ialbums.o iartists.o isongs.o istatus.o igenres.o songinfo.o all: $(TARGET) $(TARGET): $(OBJS) $(CC) $(CFLAGS) -o $@ $(OBJS) $(LDLIBS) install: $(TARGET) mkdir -p $(bindir) install -s -m755 $(TARGET) $(bindir) clean: rm -f *.o *~ distclean realclean: clean rm -f $(TARGET)