* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
13 lines
291 B
Makefile
13 lines
291 B
Makefile
|
|
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
|