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

@@ -19,12 +19,14 @@
# GNU makefile
#
topdir = ../..
PROGRAM_NAME = test_streams
INCLUDES = -I./include -I../../include
INCLUDES = -I./include -I$(topdir)/include
LIBS = -lm
OBJS = \
main.o
include ../../build/exe.mk
include $(topdir)/build/exe.mk
# DO NOT DELETE THIS LINE -- make depend depends on it.