Files
harbour-core/config/prg.mk
vszakats a4a357a18b 2013-03-15 11:12 UTC+0100 Viktor Szakats (harbour syenar.net)
* /harbour/* -> /*
    * moved whole Harbour source tree one level up to
      avoid single 'harbour' top dir
2013-03-15 11:13:30 +01:00

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