updated README for debian
[rofl0r-conpix.git] / Makefile
blob9dfcb6091de23a1f0447ad2c166deabe52218942
1 CXXFLAGS = -O2 -g -Wall -fmessage-length=0
3 OBJS = player.o
5 LIBS =
7 TARGET = player
9 $(TARGET): $(OBJS)
10 $(CXX) -o $(TARGET) $(OBJS) $(LIBS)
12 all: $(TARGET)
14 clean:
15 rm -f $(OBJS) $(TARGET)