add notion of topdir to Makefile.lite build system

This commit is contained in:
Josh Coalson
2002-10-23 22:08:13 +00:00
parent e29fb7c84c
commit cd0e322d2d
20 changed files with 76 additions and 39 deletions

View File

@@ -2,8 +2,10 @@
# GNU makefile
#
topdir = ../..
LIB_NAME = libplugin_common
INCLUDES = -I../../include -I$(HOME)/local/include
INCLUDES = -I$(topdir)/include -I$(HOME)/local/include
DEFINES = -DFLAC__HAS_ID3LIB -DID3LIB_MAJOR=3 -DID3LIB_MINOR=8 -DID3LIB_PATCH=0
OBJS = \
@@ -14,6 +16,6 @@ OBJS = \
id3v2.o \
vorbiscomment.o
include ../../build/lib.mk
include $(topdir)/build/lib.mk
# DO NOT DELETE THIS LINE -- make depend depends on it.