* /harbour/* -> /*
* moved whole Harbour source tree one level up to
avoid single 'harbour' top dir
16 lines
302 B
Makefile
16 lines
302 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
PRG_C_SOURCES := $(PRG_SOURCES:.prg=.c)
|
|
PRG_OBJS := $(PRG_SOURCES:.prg=$(OBJ_EXT))
|
|
PRG_EXES := $(PRG_SOURCES:.prg=$(BIN_EXT))
|
|
|
|
PRG_MAIN_OBJ := $(PRG_MAIN:.prg=$(OBJ_EXT))
|
|
|
|
ALL_PRG_OBJS := $(PRG_OBJS) $(PRG_MAIN_OBJ)
|
|
|
|
$(PRG_OBJS) : %$(OBJ_EXT) : %.c
|
|
|
|
$(PRG_C_SOURCES) : %.c : $(GRANDP)%.prg
|