9 lines
142 B
Makefile
9 lines
142 B
Makefile
|
|
NAME = Colleen
|
|
SRCS = Colleen.c
|
|
CLONE = $(NAME)_kid.c
|
|
CREATE_CLONE = ./$(NAME) > $(CLONE)
|
|
|
|
include ../MakefileCommon
|
|
|