makefile

来自「Yet another mp3 player, but this time us」· 代码 · 共 47 行

TXT
47
字号
##  VEEJAMP##  This program is free software; you can redistribute it and/or modify it#  under the terms of the GNU General Public License as published by the#  Free Software Foundation; either version 2 of the License, or (at your#  option) any later version.##  This program is distributed in the hope that it will be useful, but#  WITHOUT ANY WARRANTY; without even the implied warranty of#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU#  General Public License for more details, www.gnu.org.##  Copyright (C) 2000  Simon Harrison#CC = g++CFLAGS = -gSRCS =	veejamp.cpp dirb.cpp font5x7.cpp mpgcontrol.cpp playlist.cpp \        listb.cpp svgawrap.cpp playlistb.cpp dirview.cpp synmain.cpp \	synsound.cpp synsvga.cpp syncore.cppOBJS =	veejamp.o dirb.o font5x7.o mpgcontrol.o playlist.o listb.o \        svgawrap.o playlistb.o dirview.o synmain.o synsound.o \	synsvga.o syncore.oLIBRARY = -lvga -lvgagl -lm -lpthreadall:	make veejampclean:	rm -f *.o veejamp core *~backup:	rm -Rf veejamp;mkdir veejamp;rm -f veejamp.tar.bz2	cp *.cpp *.h *.TXT Makefile LICENSE veejamp	tar -ycvf veejamp.tar.bz2 veejamp;rm -R veejamp.cpp.o:	$(CC) $(CFLAGS) $(INCLUDES) -c $<veejamp: $(OBJS)	$(CC) -o veejamp $(OBJS) $(LIBRARY) $(LIBS)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?