<config.mk

OBJ = ${SRC:%.c=%.o}
$OUT: $OBJ
	$LD $LDFLAGS -o $target $OBJ

$OBJ: $SRC
	$CC $CFLAGS -c $SRC

clean:V:
	rm -f $OBJ $OUT
